Skip to content

Commit 54be008

Browse files
committed
updated docs with new functions architecture.
1 parent 5591204 commit 54be008

File tree

3 files changed

+1003
-481
lines changed

3 files changed

+1003
-481
lines changed

core/data/preprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def load_collection_files(files):
6666
keep_cols = ["Part", "Color", "Quantity", "Location"]
6767
if "Notes" in df.columns:
6868
keep_cols.append("Notes")
69-
df = df[["Part", "Color", "Quantity", "Location", "Notes"]].copy()
69+
df = df[keep_cols].copy()
7070
if "Notes" in df.columns:
7171
df = df.rename(columns={"Notes": "Second_location"})
7272
else:

0 commit comments

Comments
 (0)