From 981fedaa01d0e4415a4e6dea448f7cbc3dbf4764 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Wed, 15 Jan 2025 07:42:59 -0800 Subject: [PATCH] code review feedback --- app/aws/s3.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/aws/s3.py b/app/aws/s3.py index 78fdf8d9a..c33366a2c 100644 --- a/app/aws/s3.py +++ b/app/aws/s3.py @@ -65,7 +65,6 @@ def clean_cache(): def get_s3_client(): global s3_client if s3_client is None: - # print(hilite("S3 CLIENT IS NONE, CREATING IT!")) access_key = current_app.config["CSV_UPLOAD_BUCKET"]["access_key_id"] secret_key = current_app.config["CSV_UPLOAD_BUCKET"]["secret_access_key"] region = current_app.config["CSV_UPLOAD_BUCKET"]["region"] @@ -75,8 +74,6 @@ def get_s3_client(): region_name=region, ) s3_client = session.client("s3") - # else: - # print(hilite("S3 CLIENT ALREADY EXISTS, REUSING IT!")) return s3_client