Skip to content

Commit

Permalink
Remove debug message (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreSilveiraAzion authored Aug 4, 2024
1 parent 98ae5bc commit 30d0dec
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions commands/import_database.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -293,4 +291,4 @@ def fetch_chunks():
spinner.stop()
print("Data analysis interrupted!")

return fetch_chunks()
return fetch_chunks()

0 comments on commit 30d0dec

Please sign in to comment.