Arafath10 commited on
Commit
1d10b93
·
verified ·
1 Parent(s): 8f5b90d

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -1
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