We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bbde9ac + 0483429 commit bee3582Copy full SHA for bee3582
app/etl/extract.py
@@ -21,7 +21,7 @@ def extract(path: str = "xyz.csv") -> ________: # TODO (Find & Fix)
21
if not os.path.exists(path):
22
raise FileNotFoundError(f"❌ File not found: {path}")
23
24
- if not path.lower().endswith('.csv'):
+ if not path.lower().endswith('.txt'): # TODO (Find & Fix)
25
raise ValueError(f"❌ File must be a CSV: {path}")
26
27
try:
0 commit comments