Skip to content

Commit 54521b2

Browse files
lucasalvaaSimoCimmiMorganVitiello
committed
Fix paths in EDA.py
Co-authored-by: SimoCimmi <simonecimmino2004@gmail.com> Co-authored-by: Morgan Vitiello <morgan.vitiello06@gmail.com>
1 parent ae0169a commit 54521b2

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/EDA.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,10 @@ def _print_executive_summary(
137137

138138
if __name__ == "__main__":
139139
current_file = Path(__file__).resolve()
140-
src_dir = current_file.parent.parent
141-
project_root = src_dir.parent
140+
project_root = current_file.parent.parent
142141

143-
raw_data_path = project_root / "data" / "raw"
144-
reports_path = src_dir.parent / "reports"
142+
raw_data_path = project_root / "data" / "dedup"
143+
reports_path = project_root.parent / "reports"
145144

146145
if not raw_data_path.exists():
147146
print(f"[-] Error: Could not find data at {raw_data_path}")

0 commit comments

Comments
 (0)