Formatting: Format all python code with black.

This CL is probably not what you're looking for, it's only
automated formatting. Ignore it with
`git blame --ignore-rev <revision>` for this commit.

BUG=b:233893248
TEST=CQ

Change-Id: I66591d7a738d241aed3290138c0f68065ab10a6d
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/chromite/+/3879174
Reviewed-by: Mike Frysinger <vapier@chromium.org>
Tested-by: Alex Klein <saklein@chromium.org>
diff --git a/cli/flash_unittest.py b/cli/flash_unittest.py
index 08a9944..0115b8c 100644
--- a/cli/flash_unittest.py
+++ b/cli/flash_unittest.py
@@ -18,219 +18,273 @@
 
 
 class USBImagerMock(partial_mock.PartialCmdMock):
-  """Mock out USBImager."""
-  TARGET = 'chromite.cli.flash.USBImager'
-  ATTRS = ('CopyImageToDevice', 'ChooseRemovableDevice',
-           'ListAllRemovableDevices', 'GetRemovableDeviceDescription')
-  VALID_IMAGE = True
+    """Mock out USBImager."""
 
-  def __init__(self):
-    partial_mock.PartialCmdMock.__init__(self)
+    TARGET = "chromite.cli.flash.USBImager"
+    ATTRS = (
+        "CopyImageToDevice",
+        "ChooseRemovableDevice",
+        "ListAllRemovableDevices",
+        "GetRemovableDeviceDescription",
+    )
+    VALID_IMAGE = True
 
-  def CopyImageToDevice(self, _inst, *_args, **_kwargs):
-    """Mock out CopyImageToDevice."""
+    def __init__(self):
+        partial_mock.PartialCmdMock.__init__(self)
 
-  def ChooseRemovableDevice(self, _inst, *_args, **_kwargs):
-    """Mock out ChooseRemovableDevice."""
+    def CopyImageToDevice(self, _inst, *_args, **_kwargs):
+        """Mock out CopyImageToDevice."""
 
-  def ListAllRemovableDevices(self, _inst, *_args, **_kwargs):
-    """Mock out ListAllRemovableDevices."""
-    return ['foo', 'taco', 'milk']
+    def ChooseRemovableDevice(self, _inst, *_args, **_kwargs):
+        """Mock out ChooseRemovableDevice."""
 
-  def GetRemovableDeviceDescription(self, _inst, *_args, **_kwargs):
-    """Mock out GetRemovableDeviceDescription."""
+    def ListAllRemovableDevices(self, _inst, *_args, **_kwargs):
+        """Mock out ListAllRemovableDevices."""
+        return ["foo", "taco", "milk"]
+
+    def GetRemovableDeviceDescription(self, _inst, *_args, **_kwargs):
+        """Mock out GetRemovableDeviceDescription."""
 
 
 class USBImagerTest(cros_test_lib.MockTempDirTestCase):
-  """Test the flow of flash.Flash() with USBImager."""
-  IMAGE = '/path/to/image'
+    """Test the flow of flash.Flash() with USBImager."""
 
-  def Device(self, path):
-    """Create a USB device for passing to flash.Flash()."""
-    return commandline.Device(scheme=commandline.DEVICE_SCHEME_USB,
-                              path=path)
+    IMAGE = "/path/to/image"
 
-  def setUp(self):
-    """Patches objects."""
-    self.usb_mock = USBImagerMock()
-    self.imager_mock = self.StartPatcher(self.usb_mock)
-    self.PatchObject(dev_server_wrapper, 'GetImagePathWithXbuddy',
-                     return_value=('taco-paladin/R36/chromiumos_test_image.bin',
-                                   'remote/taco-paladin/R36/test'))
-    self.PatchObject(os.path, 'exists', return_value=True)
-    self.PatchObject(os.path, 'getsize', return_value=200)
-    self.isgpt_mock = self.PatchObject(flash, '_IsFilePathGPTDiskImage',
-                                       return_value=True)
-    self.PatchObject(osutils, 'GetDeviceSize', return_value=200)
+    def Device(self, path):
+        """Create a USB device for passing to flash.Flash()."""
+        return commandline.Device(
+            scheme=commandline.DEVICE_SCHEME_USB, path=path
+        )
 
-  def testLocalImagePathCopy(self):
-    """Tests that imaging methods are called correctly."""
-    with mock.patch('os.path.isfile', return_value=True):
-      flash.Flash(self.Device('/dev/foo'), self.IMAGE)
-      self.assertTrue(self.imager_mock.patched['CopyImageToDevice'].called)
+    def setUp(self):
+        """Patches objects."""
+        self.usb_mock = USBImagerMock()
+        self.imager_mock = self.StartPatcher(self.usb_mock)
+        self.PatchObject(
+            dev_server_wrapper,
+            "GetImagePathWithXbuddy",
+            return_value=(
+                "taco-paladin/R36/chromiumos_test_image.bin",
+                "remote/taco-paladin/R36/test",
+            ),
+        )
+        self.PatchObject(os.path, "exists", return_value=True)
+        self.PatchObject(os.path, "getsize", return_value=200)
+        self.isgpt_mock = self.PatchObject(
+            flash, "_IsFilePathGPTDiskImage", return_value=True
+        )
+        self.PatchObject(osutils, "GetDeviceSize", return_value=200)
 
-  def testLocalBadImagePath(self):
-    """Tests that using an image not having the magic bytes has prompt."""
-    self.isgpt_mock.return_value = False
-    with mock.patch('os.path.isfile', return_value=True):
-      with mock.patch.object(cros_build_lib, 'BooleanPrompt') as mock_prompt:
-        mock_prompt.return_value = False
-        flash.Flash(self.Device('/dev/foo'), self.IMAGE)
-        self.assertTrue(mock_prompt.called)
+    def testLocalImagePathCopy(self):
+        """Tests that imaging methods are called correctly."""
+        with mock.patch("os.path.isfile", return_value=True):
+            flash.Flash(self.Device("/dev/foo"), self.IMAGE)
+            self.assertTrue(
+                self.imager_mock.patched["CopyImageToDevice"].called
+            )
 
-  def testNonLocalImagePath(self):
-    """Tests that we try to get the image path using xbuddy."""
-    with mock.patch.object(
-        dev_server_wrapper,
-        'GetImagePathWithXbuddy',
-        return_value=('translated/xbuddy/path',
-                      'resolved/xbuddy/path')) as mock_xbuddy:
-      with mock.patch('os.path.isfile', return_value=False):
-        with mock.patch('os.path.isdir', return_value=False):
-          flash.Flash(self.Device('/dev/foo'), self.IMAGE)
-          self.assertTrue(mock_xbuddy.called)
+    def testLocalBadImagePath(self):
+        """Tests that using an image not having the magic bytes has prompt."""
+        self.isgpt_mock.return_value = False
+        with mock.patch("os.path.isfile", return_value=True):
+            with mock.patch.object(
+                cros_build_lib, "BooleanPrompt"
+            ) as mock_prompt:
+                mock_prompt.return_value = False
+                flash.Flash(self.Device("/dev/foo"), self.IMAGE)
+                self.assertTrue(mock_prompt.called)
 
-  def testConfirmNonRemovableDevice(self):
-    """Tests that we ask user to confirm if the device is not removable."""
-    with mock.patch.object(cros_build_lib, 'BooleanPrompt') as mock_prompt:
-      flash.Flash(self.Device('/dev/stub'), self.IMAGE)
-      self.assertTrue(mock_prompt.called)
+    def testNonLocalImagePath(self):
+        """Tests that we try to get the image path using xbuddy."""
+        with mock.patch.object(
+            dev_server_wrapper,
+            "GetImagePathWithXbuddy",
+            return_value=("translated/xbuddy/path", "resolved/xbuddy/path"),
+        ) as mock_xbuddy:
+            with mock.patch("os.path.isfile", return_value=False):
+                with mock.patch("os.path.isdir", return_value=False):
+                    flash.Flash(self.Device("/dev/foo"), self.IMAGE)
+                    self.assertTrue(mock_xbuddy.called)
 
-  def testSkipPromptNonRemovableDevice(self):
-    """Tests that we skip the prompt for non-removable with --yes."""
-    with mock.patch.object(cros_build_lib, 'BooleanPrompt') as mock_prompt:
-      flash.Flash(self.Device('/dev/stub'), self.IMAGE, yes=True)
-      self.assertFalse(mock_prompt.called)
+    def testConfirmNonRemovableDevice(self):
+        """Tests that we ask user to confirm if the device is not removable."""
+        with mock.patch.object(cros_build_lib, "BooleanPrompt") as mock_prompt:
+            flash.Flash(self.Device("/dev/stub"), self.IMAGE)
+            self.assertTrue(mock_prompt.called)
 
-  def testChooseRemovableDevice(self):
-    """Tests that we ask user to choose a device if none is given."""
-    flash.Flash(self.Device(''), self.IMAGE)
-    self.assertTrue(self.imager_mock.patched['ChooseRemovableDevice'].called)
+    def testSkipPromptNonRemovableDevice(self):
+        """Tests that we skip the prompt for non-removable with --yes."""
+        with mock.patch.object(cros_build_lib, "BooleanPrompt") as mock_prompt:
+            flash.Flash(self.Device("/dev/stub"), self.IMAGE, yes=True)
+            self.assertFalse(mock_prompt.called)
 
-  def testInsufficientRemovableDeviceStorage(self):
-    self.PatchObject(osutils, 'GetDeviceSize', return_value=100)
-    with self.assertRaises(flash.FlashError):
-      flash.Flash(self.Device(''), self.IMAGE)
+    def testChooseRemovableDevice(self):
+        """Tests that we ask user to choose a device if none is given."""
+        flash.Flash(self.Device(""), self.IMAGE)
+        self.assertTrue(
+            self.imager_mock.patched["ChooseRemovableDevice"].called
+        )
+
+    def testInsufficientRemovableDeviceStorage(self):
+        self.PatchObject(osutils, "GetDeviceSize", return_value=100)
+        with self.assertRaises(flash.FlashError):
+            flash.Flash(self.Device(""), self.IMAGE)
 
 
 class UsbImagerOperationTest(cros_test_lib.RunCommandTestCase):
-  """Tests for flash.UsbImagerOperation."""
-  # pylint: disable=protected-access
+    """Tests for flash.UsbImagerOperation."""
 
-  def setUp(self):
-    self.PatchObject(flash.UsbImagerOperation, '__init__', return_value=None)
+    # pylint: disable=protected-access
 
-  def testUsbImagerOperationCalled(self):
-    """Test that flash.UsbImagerOperation is called when log level <= NOTICE."""
-    expected_cmd = ['dd', 'if=foo', 'of=bar', 'bs=4M', 'iflag=fullblock',
-                    'oflag=direct', 'conv=fdatasync']
-    usb_imager = flash.USBImager('stub_device', 'board', 'foo', 'latest')
-    run_mock = self.PatchObject(flash.UsbImagerOperation, 'Run')
-    self.PatchObject(logging.Logger, 'getEffectiveLevel',
-                     return_value=logging.NOTICE)
-    usb_imager.CopyImageToDevice('foo', 'bar')
+    def setUp(self):
+        self.PatchObject(
+            flash.UsbImagerOperation, "__init__", return_value=None
+        )
 
-    # Check that flash.UsbImagerOperation.Run() is called correctly.
-    run_mock.assert_called_with(cros_build_lib.sudo_run, expected_cmd,
-                                debug_level=logging.NOTICE, encoding='utf-8',
-                                update_period=0.5)
+    def testUsbImagerOperationCalled(self):
+        """Test that flash.UsbImagerOperation is called when log level <= NOTICE."""
+        expected_cmd = [
+            "dd",
+            "if=foo",
+            "of=bar",
+            "bs=4M",
+            "iflag=fullblock",
+            "oflag=direct",
+            "conv=fdatasync",
+        ]
+        usb_imager = flash.USBImager("stub_device", "board", "foo", "latest")
+        run_mock = self.PatchObject(flash.UsbImagerOperation, "Run")
+        self.PatchObject(
+            logging.Logger, "getEffectiveLevel", return_value=logging.NOTICE
+        )
+        usb_imager.CopyImageToDevice("foo", "bar")
 
-  def testSudoRunCommandCalled(self):
-    """Test that sudo_run is called when log level > NOTICE."""
-    expected_cmd = ['dd', 'if=foo', 'of=bar', 'bs=4M', 'iflag=fullblock',
-                    'oflag=direct', 'conv=fdatasync']
-    usb_imager = flash.USBImager('stub_device', 'board', 'foo', 'latest')
-    run_mock = self.PatchObject(cros_build_lib, 'sudo_run')
-    self.PatchObject(logging.Logger, 'getEffectiveLevel',
-                     return_value=logging.WARNING)
-    usb_imager.CopyImageToDevice('foo', 'bar')
+        # Check that flash.UsbImagerOperation.Run() is called correctly.
+        run_mock.assert_called_with(
+            cros_build_lib.sudo_run,
+            expected_cmd,
+            debug_level=logging.NOTICE,
+            encoding="utf-8",
+            update_period=0.5,
+        )
 
-    # Check that sudo_run() is called correctly.
-    run_mock.assert_any_call(expected_cmd, debug_level=logging.NOTICE,
-                             print_cmd=False)
+    def testSudoRunCommandCalled(self):
+        """Test that sudo_run is called when log level > NOTICE."""
+        expected_cmd = [
+            "dd",
+            "if=foo",
+            "of=bar",
+            "bs=4M",
+            "iflag=fullblock",
+            "oflag=direct",
+            "conv=fdatasync",
+        ]
+        usb_imager = flash.USBImager("stub_device", "board", "foo", "latest")
+        run_mock = self.PatchObject(cros_build_lib, "sudo_run")
+        self.PatchObject(
+            logging.Logger, "getEffectiveLevel", return_value=logging.WARNING
+        )
+        usb_imager.CopyImageToDevice("foo", "bar")
 
-  def testPingDD(self):
-    """Test that UsbImagerOperation._PingDD() sends the correct signal."""
-    expected_cmd = ['kill', '-USR1', '5']
-    run_mock = self.PatchObject(cros_build_lib, 'sudo_run')
-    op = flash.UsbImagerOperation('foo')
-    op._PingDD(5)
+        # Check that sudo_run() is called correctly.
+        run_mock.assert_any_call(
+            expected_cmd, debug_level=logging.NOTICE, print_cmd=False
+        )
 
-    # Check that sudo_run was called correctly.
-    run_mock.assert_called_with(expected_cmd, print_cmd=False)
+    def testPingDD(self):
+        """Test that UsbImagerOperation._PingDD() sends the correct signal."""
+        expected_cmd = ["kill", "-USR1", "5"]
+        run_mock = self.PatchObject(cros_build_lib, "sudo_run")
+        op = flash.UsbImagerOperation("foo")
+        op._PingDD(5)
 
-  def testGetDDPidFound(self):
-    """Check that the expected pid is returned for _GetDDPid()."""
-    expected_pid = 5
-    op = flash.UsbImagerOperation('foo')
-    self.PatchObject(osutils, 'IsChildProcess', return_value=True)
-    self.rc.AddCmdResult(partial_mock.Ignore(),
-                         stdout=f'{expected_pid}\n10\n')
+        # Check that sudo_run was called correctly.
+        run_mock.assert_called_with(expected_cmd, print_cmd=False)
 
-    pid = op._GetDDPid()
+    def testGetDDPidFound(self):
+        """Check that the expected pid is returned for _GetDDPid()."""
+        expected_pid = 5
+        op = flash.UsbImagerOperation("foo")
+        self.PatchObject(osutils, "IsChildProcess", return_value=True)
+        self.rc.AddCmdResult(
+            partial_mock.Ignore(), stdout=f"{expected_pid}\n10\n"
+        )
 
-    # Check that the correct pid was returned.
-    self.assertEqual(pid, expected_pid)
+        pid = op._GetDDPid()
 
-  def testGetDDPidNotFound(self):
-    """Check that -1 is returned for _GetDDPid() if the pids aren't valid."""
-    expected_pid = -1
-    op = flash.UsbImagerOperation('foo')
-    self.PatchObject(osutils, 'IsChildProcess', return_value=False)
-    self.rc.AddCmdResult(partial_mock.Ignore(), stdout='5\n10\n')
+        # Check that the correct pid was returned.
+        self.assertEqual(pid, expected_pid)
 
-    pid = op._GetDDPid()
+    def testGetDDPidNotFound(self):
+        """Check that -1 is returned for _GetDDPid() if the pids aren't valid."""
+        expected_pid = -1
+        op = flash.UsbImagerOperation("foo")
+        self.PatchObject(osutils, "IsChildProcess", return_value=False)
+        self.rc.AddCmdResult(partial_mock.Ignore(), stdout="5\n10\n")
 
-    # Check that the correct pid was returned.
-    self.assertEqual(pid, expected_pid)
+        pid = op._GetDDPid()
+
+        # Check that the correct pid was returned.
+        self.assertEqual(pid, expected_pid)
 
 
 class FlashUtilTest(cros_test_lib.MockTempDirTestCase):
-  """Tests the helpers from cli.flash."""
+    """Tests the helpers from cli.flash."""
 
-  def testChooseImage(self):
-    """Tests that we can detect a GPT image."""
-    # pylint: disable=protected-access
+    def testChooseImage(self):
+        """Tests that we can detect a GPT image."""
+        # pylint: disable=protected-access
 
-    with self.PatchObject(flash, '_IsFilePathGPTDiskImage', return_value=True):
-      # No images defined. Choosing the image should raise an error.
-      with self.assertRaises(ValueError):
-        flash._ChooseImageFromDirectory(self.tempdir)
+        with self.PatchObject(
+            flash, "_IsFilePathGPTDiskImage", return_value=True
+        ):
+            # No images defined. Choosing the image should raise an error.
+            with self.assertRaises(ValueError):
+                flash._ChooseImageFromDirectory(self.tempdir)
 
-      file_a = os.path.join(self.tempdir, 'a')
-      osutils.Touch(file_a)
-      # Only one image available, it should be selected automatically.
-      self.assertEqual(file_a, flash._ChooseImageFromDirectory(self.tempdir))
+            file_a = os.path.join(self.tempdir, "a")
+            osutils.Touch(file_a)
+            # Only one image available, it should be selected automatically.
+            self.assertEqual(
+                file_a, flash._ChooseImageFromDirectory(self.tempdir)
+            )
 
-      osutils.Touch(os.path.join(self.tempdir, 'b'))
-      file_c = os.path.join(self.tempdir, 'c')
-      osutils.Touch(file_c)
-      osutils.Touch(os.path.join(self.tempdir, 'd'))
+            osutils.Touch(os.path.join(self.tempdir, "b"))
+            file_c = os.path.join(self.tempdir, "c")
+            osutils.Touch(file_c)
+            osutils.Touch(os.path.join(self.tempdir, "d"))
 
-      # Multiple images available, we should ask the user to select the right
-      # image.
-      with self.PatchObject(cros_build_lib, 'GetChoice', return_value=2):
-        self.assertEqual(file_c, flash._ChooseImageFromDirectory(self.tempdir))
+            # Multiple images available, we should ask the user to select the right
+            # image.
+            with self.PatchObject(cros_build_lib, "GetChoice", return_value=2):
+                self.assertEqual(
+                    file_c, flash._ChooseImageFromDirectory(self.tempdir)
+                )
 
-  def testIsFilePathGPTDiskImage(self):
-    """Tests the GPT image probing."""
-    # pylint: disable=protected-access
+    def testIsFilePathGPTDiskImage(self):
+        """Tests the GPT image probing."""
+        # pylint: disable=protected-access
 
-    INVALID_PMBR = b' ' * 0x200
-    INVALID_GPT = b' ' * 0x200
-    VALID_PMBR = (b' ' * 0x1fe) + b'\x55\xaa'
-    VALID_GPT = b'EFI PART' + (b' ' * 0x1f8)
-    TESTCASES = (
-        (False, False, INVALID_PMBR + INVALID_GPT),
-        (False, False, VALID_PMBR + INVALID_GPT),
-        (False, True, INVALID_PMBR + VALID_GPT),
-        (True, True, VALID_PMBR + VALID_GPT),
-    )
+        INVALID_PMBR = b" " * 0x200
+        INVALID_GPT = b" " * 0x200
+        VALID_PMBR = (b" " * 0x1FE) + b"\x55\xaa"
+        VALID_GPT = b"EFI PART" + (b" " * 0x1F8)
+        TESTCASES = (
+            (False, False, INVALID_PMBR + INVALID_GPT),
+            (False, False, VALID_PMBR + INVALID_GPT),
+            (False, True, INVALID_PMBR + VALID_GPT),
+            (True, True, VALID_PMBR + VALID_GPT),
+        )
 
-    img = os.path.join(self.tempdir, 'img.bin')
-    for exp_pmbr_t, exp_pmbr_f, data in TESTCASES:
-      osutils.WriteFile(img, data, mode='wb')
-      self.assertEqual(
-          flash._IsFilePathGPTDiskImage(img, require_pmbr=True), exp_pmbr_t)
-      self.assertEqual(
-          flash._IsFilePathGPTDiskImage(img, require_pmbr=False), exp_pmbr_f)
+        img = os.path.join(self.tempdir, "img.bin")
+        for exp_pmbr_t, exp_pmbr_f, data in TESTCASES:
+            osutils.WriteFile(img, data, mode="wb")
+            self.assertEqual(
+                flash._IsFilePathGPTDiskImage(img, require_pmbr=True),
+                exp_pmbr_t,
+            )
+            self.assertEqual(
+                flash._IsFilePathGPTDiskImage(img, require_pmbr=False),
+                exp_pmbr_f,
+            )