This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit 29172bef811040674acd318db89e3acb31271721
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Tue Aug 1 12:30:55 2023 +0200

    Fix lint.
---
 CHANGES.rst                                | 8 ++++----
 libcloud/test/storage/test_backblaze_b2.py | 6 ++++--
 2 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/CHANGES.rst b/CHANGES.rst
index 245ded36a..6886e6c55 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -31,10 +31,10 @@ Compute
 
 - [AWS EC2] Add support for the following new arguments to the
   ``ex_register_image()`` method:
-    * ``boot_mode`` - control bios vs uefi boot
-    * ``tpm_support`` - enable a tpm
-    * ``uefi_data`` - provide NV UEFI vars
-    * ``imds_support`` - require IMDSv2.
+  * ``boot_mode`` - control bios vs uefi boot
+  * ``tpm_support`` - enable a tpm
+  * ``uefi_data`` - provide NV UEFI vars
+  * ``imds_support`` - require IMDSv2.
   (GITHUB-1906)
   [Ross Vandegrift - @rvandegrift]
 
diff --git a/libcloud/test/storage/test_backblaze_b2.py 
b/libcloud/test/storage/test_backblaze_b2.py
index d2b3d6731..269d81507 100644
--- a/libcloud/test/storage/test_backblaze_b2.py
+++ b/libcloud/test/storage/test_backblaze_b2.py
@@ -127,8 +127,10 @@ class BackblazeB2StorageDriverTestCase(unittest.TestCase):
         file_path = os.path.abspath(__file__)
         container = self.driver.list_containers()[0]
         obj = self.driver.upload_object(
-            file_path=file_path, container=container, 
object_name="test0007.txt",
-            extra={"meta_data": {"foo": "bar", "baz": 1}}
+            file_path=file_path,
+            container=container,
+            object_name="test0007.txt",
+            extra={"meta_data": {"foo": "bar", "baz": 1}},
         )
         self.assertEqual(obj.name, "test0007.txt")
         self.assertEqual(obj.size, 24)

Reply via email to