applied black

This commit is contained in:
Matthias Bisping 2022-02-25 14:57:57 +01:00
parent 5d244c3f67
commit 22636e5e5d

View File

@ -30,8 +30,4 @@ def get_s3_client(params=None) -> Minio:
if not params:
params = CONFIG.storage.s3
return Minio(
**parse_endpoint(params.endpoint),
access_key=params.access_key,
secret_key=params.secret_key
)
return Minio(**parse_endpoint(params.endpoint), access_key=params.access_key, secret_key=params.secret_key)