Spaces:
Sleeping
Sleeping
Update main.py
Browse files
main.py
CHANGED
@@ -122,7 +122,7 @@ async def your_continuous_function(X_Tenant):
|
|
122 |
|
123 |
|
124 |
@app.get("/kpi_results")
|
125 |
-
def read_root(X_Tenant):
|
126 |
data = await your_continuous_function(X_Tenant)
|
127 |
status_counts_more_than_80 = data[data['delivery_possibility'] > 80]['status.name'].value_counts()
|
128 |
|
|
|
122 |
|
123 |
|
124 |
@app.get("/kpi_results")
|
125 |
+
async def read_root(X_Tenant):
|
126 |
data = await your_continuous_function(X_Tenant)
|
127 |
status_counts_more_than_80 = data[data['delivery_possibility'] > 80]['status.name'].value_counts()
|
128 |
|