Run black on moto & test directories.

This commit is contained in:
Asher Foa 2019-10-31 08:44:26 -07:00
commit 96e5b1993d
507 changed files with 52541 additions and 47814 deletions

View file

@ -14,12 +14,12 @@ def test_bucketpath_combo_serial():
@mock_s3_deprecated
def make_bucket_path():
conn = create_connection()
conn.create_bucket('mybucketpath')
conn.create_bucket("mybucketpath")
@mock_s3_deprecated
def make_bucket():
conn = boto.connect_s3('the_key', 'the_secret')
conn.create_bucket('mybucket')
conn = boto.connect_s3("the_key", "the_secret")
conn.create_bucket("mybucket")
make_bucket()
make_bucket_path()