We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f84be36 commit 371a384Copy full SHA for 371a384
tests/functional/tests.py
@@ -999,13 +999,16 @@ def test_put_object_multipart_with_checksum( # pylint: disable=invalid-name
999
1000
finally:
1001
try:
1002
- _client.remove_object(bucket_name=bucket_name, object_name=object_name)
+ _client.remove_object(
1003
+ bucket_name=bucket_name, object_name=object_name)
1004
except: # pylint: disable=bare-except
1005
pass
1006
if object_name_sha256:
1007
1008
_client.remove_object(
- bucket_name=bucket_name, object_name=object_name_sha256)
1009
+ bucket_name=bucket_name,
1010
+ object_name=object_name_sha256,
1011
+ )
1012
1013
1014
0 commit comments