From 30d0dec7182755958c75daf693eae9c36a40387a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Lehdermann=20Silveira?= <80284411+AndreSilveiraAzion@users.noreply.github.com> Date: Sun, 4 Aug 2024 18:13:48 -0300 Subject: [PATCH] Remove debug message (#76) --- commands/import_database.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/commands/import_database.py b/commands/import_database.py index d43c03c..2a0cb9d 100644 --- a/commands/import_database.py +++ b/commands/import_database.py @@ -276,8 +276,6 @@ def fetch_chunks(): if not rows: break - print(f'final current_chunk_size={current_chunk_size} - rows={len(rows)} - offset={offset} - limit={estimated_limit}') - df_chunk = pd.DataFrame(rows, columns=columns) yield df_chunk @@ -293,4 +291,4 @@ def fetch_chunks(): spinner.stop() print("Data analysis interrupted!") - return fetch_chunks() \ No newline at end of file + return fetch_chunks()