Skip to content

Commit

Permalink
fix lint errors at up.py
Browse files Browse the repository at this point in the history
  • Loading branch information
iperoyg committed Jun 26, 2022
1 parent c7697c9 commit 65a12b2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/apicomplexoperations/up.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@

if __name__ == "__main__":
print('port', config_port)
uvicorn.run("main:app", host="0.0.0.0", port=config_port, log_level="trace")
local = "0.0.0.0"
log = "trace"
uvicorn.run("main:app", host=local, port=config_port, log_level=log)

0 comments on commit 65a12b2

Please sign in to comment.