Skip to content

Commit 4582837

Browse files
committed
Update path for incomplete address records output in check_addresses_complete function
1 parent e098bd2 commit 4582837

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pipeline/preprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def check_addresses_complete(df: pd.DataFrame) -> pd.DataFrame:
224224

225225
incomplete_records = df.loc[~df["address_complete"]]
226226

227-
incomplete_path = Path("output/artifacts/incomplete_addresses.csv")
227+
incomplete_path = Path("output/incomplete_addresses.csv")
228228
incomplete_records.to_csv(incomplete_path, index=False)
229229
LOG.info("Incomplete address records written to %s", incomplete_path)
230230

0 commit comments

Comments
 (0)