Compare commits

...

1 Commits

Author SHA1 Message Date
96d56d7f1f linters fixes
Some checks failed
ci/woodpecker/push/python_lints Pipeline failed
ci/woodpecker/push/test_pipeline Pipeline failed
2026-04-19 16:45:34 +03:00

View File

@@ -1,6 +1,7 @@
from contextlib import asynccontextmanager
import uvicorn import uvicorn
from fastapi import FastAPI from fastapi import FastAPI
from contextlib import asynccontextmanager
@asynccontextmanager @asynccontextmanager
@@ -17,6 +18,5 @@ def main():
uvicorn.run(app_factory, factory=True, host="0.0.0.0", port=8000) uvicorn.run(app_factory, factory=True, host="0.0.0.0", port=8000)
if __name__ == "__main__": if __name__ == "__main__":
main() main()