Skip to content

Commit

Permalink
refactor: remove unnecessary debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
loicguillois committed Jan 27, 2025
1 parent 0a7a5fe commit e83fad1
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)}
}
Expand Down

0 comments on commit e83fad1

Please sign in to comment.