We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae0169a commit 54521b2Copy full SHA for 54521b2
src/EDA.py
@@ -137,11 +137,10 @@ def _print_executive_summary(
137
138
if __name__ == "__main__":
139
current_file = Path(__file__).resolve()
140
- src_dir = current_file.parent.parent
141
- project_root = src_dir.parent
+ project_root = current_file.parent.parent
142
143
- raw_data_path = project_root / "data" / "raw"
144
- reports_path = src_dir.parent / "reports"
+ raw_data_path = project_root / "data" / "dedup"
+ reports_path = project_root.parent / "reports"
145
146
if not raw_data_path.exists():
147
print(f"[-] Error: Could not find data at {raw_data_path}")
0 commit comments