From e83fad1e8c1d0ca857e96f0275d18a9339652c5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Guillois?= Date: Mon, 27 Jan 2025 17:21:09 +0100 Subject: [PATCH] refactor: remove unnecessary debug log --- .../dagster/src/assets/populate_housings_ban_addresses.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/analytics/dagster/src/assets/populate_housings_ban_addresses.py b/analytics/dagster/src/assets/populate_housings_ban_addresses.py index 79ab414a4..be6d0833b 100644 --- a/analytics/dagster/src/assets/populate_housings_ban_addresses.py +++ b/analytics/dagster/src/assets/populate_housings_ban_addresses.py @@ -36,12 +36,6 @@ def create_csv_from_housings(context: AssetExecutionContext, housings_without_ad context.log.info(f"CSV file created at: {csv_file_path}") - df = pd.read_csv(csv_file_path) - pd.set_option('display.max_columns', None) - pd.set_option('display.max_rows', None) - pd.set_option('display.width', None) - context.log.info(f"Preview of the CSV file:\n{df.head()}") - return { "metadata": {"file_path": MetadataValue.text(csv_file_path)} }