From 22636e5e5df1148004598a268348673537454e36 Mon Sep 17 00:00:00 2001 From: Matthias Bisping Date: Fri, 25 Feb 2022 14:57:57 +0100 Subject: [PATCH] applied black --- pyinfra/storage/clients/s3.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pyinfra/storage/clients/s3.py b/pyinfra/storage/clients/s3.py index 6d4b9ae..6b73fee 100644 --- a/pyinfra/storage/clients/s3.py +++ b/pyinfra/storage/clients/s3.py @@ -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)