Tracy André commited on
Commit
fd8d3c6
·
1 Parent(s): 3333f74
Files changed (1) hide show
  1. data_loader.py +1 -1
data_loader.py CHANGED
@@ -109,7 +109,7 @@ class AgriculturalDataLoader:
109
 
110
  # If the first row contains "Interventions (sortie sous excel)", skip it
111
  if df.columns[0].startswith('Interventions'):
112
- df = pd.read_csv(local_path, skiprows=1)
113
  all_dataframes.append(df)
114
  print(f" ✅ {csv_file}: {len(df)} rows")
115
 
 
109
 
110
  # If the first row contains "Interventions (sortie sous excel)", skip it
111
  if df.columns[0].startswith('Interventions'):
112
+ df = pd.read_csv(local_path)
113
  all_dataframes.append(df)
114
  print(f" ✅ {csv_file}: {len(df)} rows")
115