Rsnarsna commited on
Commit
6d022b1
·
verified ·
1 Parent(s): e0ee496

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -215,7 +215,7 @@ async def email_processing_loop():
215
  @app.get("/", response_class=HTMLResponse)
216
  async def home():
217
  global running
218
- os.getenv('db')
219
  status = "Running" if running else "Stopped"
220
  return HTMLResponse(content=html_content.replace("{{ status }}", status), status_code=200)
221
 
 
215
  @app.get("/", response_class=HTMLResponse)
216
  async def home():
217
  global running
218
+ print(os.getenv('db'))
219
  status = "Running" if running else "Stopped"
220
  return HTMLResponse(content=html_content.replace("{{ status }}", status), status_code=200)
221