Skip to content

Commit

Permalink
format with black
Browse files Browse the repository at this point in the history
  • Loading branch information
graebm committed Dec 1, 2023
1 parent 2611850 commit 1bbae16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion s3transfer/crt.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
from botocore.exceptions import NoCredentialsError

from s3transfer.constants import MB
from s3transfer.manager import TransferManager
from s3transfer.exceptions import TransferNotDoneError
from s3transfer.futures import BaseTransferFuture, BaseTransferMeta
from s3transfer.manager import TransferManager
from s3transfer.utils import CallArgs, OSUtils, get_callbacks

logger = logging.getLogger(__name__)
Expand Down
5 changes: 2 additions & 3 deletions tests/functional/test_crt.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,9 +374,8 @@ def test_upload_throws_error_on_s3_object_lambda_resource(self):
)
with self.assertRaisesRegex(ValueError, 'methods do not support'):
self.transfer_manager.upload(
self.filename,
s3_object_lambda_arn,
self.key)
self.filename, s3_object_lambda_arn, self.key
)

def test_download(self):
future = self.transfer_manager.download(
Expand Down

0 comments on commit 1bbae16

Please sign in to comment.