chore: remove some unused noqa's

This commit is contained in:
Matthias
2025-04-09 19:51:38 +02:00
parent 1d9d2fce7f
commit b797a5bf2f
5 changed files with 49 additions and 49 deletions

View File

@@ -41,7 +41,7 @@ class UvicornServer(uvicorn.Server):
but we need to create uvloop event loop manually
"""
try:
import uvloop # noqa
import uvloop
except ImportError: # pragma: no cover
asyncio_setup()
else: