Skip to content

Commit

Permalink
✨ Added output csv separator standardization
Browse files Browse the repository at this point in the history
  • Loading branch information
m-paz committed Aug 5, 2021
1 parent 18484ba commit 8d76122
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion viadot/flows/adls_gen1_to_azure_sql_new.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def gen_flow(self) -> Flow:
df2 = df_replace_special_chars.bind(df=df, flow=self)
df_with_metadata = add_ingestion_metadata_task.bind(df=df2, flow=self)
df_to_csv_task.bind(
df=df_with_metadata, path=self.local_file_path, sep=self.sep, flow=self
df=df_with_metadata, path=self.local_file_path, sep="\t", flow=self
)
gen2_upload_task.bind(
from_path=self.local_file_path,
Expand Down

0 comments on commit 8d76122

Please sign in to comment.