Skip to content

Commit 371a384

Browse files
committed
Fixes
1 parent f84be36 commit 371a384

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/functional/tests.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -999,13 +999,16 @@ def test_put_object_multipart_with_checksum( # pylint: disable=invalid-name
999999

10001000
finally:
10011001
try:
1002-
_client.remove_object(bucket_name=bucket_name, object_name=object_name)
1002+
_client.remove_object(
1003+
bucket_name=bucket_name, object_name=object_name)
10031004
except: # pylint: disable=bare-except
10041005
pass
10051006
if object_name_sha256:
10061007
try:
10071008
_client.remove_object(
1008-
bucket_name=bucket_name, object_name=object_name_sha256)
1009+
bucket_name=bucket_name,
1010+
object_name=object_name_sha256,
1011+
)
10091012
except: # pylint: disable=bare-except
10101013
pass
10111014
try:

0 commit comments

Comments
 (0)