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.
1 parent 2309c78 commit 71da32bCopy full SHA for 71da32b
app/etl/extract.py
@@ -72,7 +72,7 @@ def extract(path: str = "xyz.csv") -> pd.DataFrame:
72
raise ValueError("❌ Failed to read data from file")
73
74
if df.empty:
75
- raise ValueError("❌ File contains no data")
+ raise ValueError(" File contains no data")
76
77
print(f"✅ Extracted {len(df)} rows and {len(df.columns)} columns") # TODO: Use logging instead of print
78
return df
0 commit comments