Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -11,7 +11,7 @@ def load_data():
|
|
| 11 |
print(f"Current Directory: {cwd}")
|
| 12 |
print(f"Files in Directory: {os.listdir(cwd)}")
|
| 13 |
lead_time_path = os.path.join(os.getcwd(), "final_cleaned_lead_time_data.csv")
|
| 14 |
-
inventory_path = os.path.join(os.getcwd(), "
|
| 15 |
lead_time_data = pd.read_csv(lead_time_path)
|
| 16 |
inventory_data = pd.read_csv(inventory_path)
|
| 17 |
return lead_time_data, inventory_data
|
|
|
|
| 11 |
print(f"Current Directory: {cwd}")
|
| 12 |
print(f"Files in Directory: {os.listdir(cwd)}")
|
| 13 |
lead_time_path = os.path.join(os.getcwd(), "final_cleaned_lead_time_data.csv")
|
| 14 |
+
inventory_path = os.path.join(os.getcwd(), "inventory.csv")
|
| 15 |
lead_time_data = pd.read_csv(lead_time_path)
|
| 16 |
inventory_data = pd.read_csv(inventory_path)
|
| 17 |
return lead_time_data, inventory_data
|