Add pyright strict type checking

This commit is contained in:
Martijn Pieters
2023-05-09 17:33:07 +01:00
parent ad1eae2b4b
commit 0763cd7b95
9 changed files with 124 additions and 61 deletions

View File

@@ -1,3 +1,4 @@
# pyright: reportGeneralTypeIssues=false
import time
import pendulum
@@ -87,4 +88,4 @@ async def startup():
if __name__ == "__main__":
uvicorn.run("main:app", debug=True, reload=True)
uvicorn.run("main:app", reload=True)