From c0d8ec743346e7266d924e583fe78f7f32c6a50e Mon Sep 17 00:00:00 2001 From: Serious-senpai <57554044+Serious-senpai@users.noreply.github.com> Date: Mon, 16 Sep 2024 17:44:39 +0700 Subject: [PATCH] Fix flake8 --- main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 702f146..282447c 100644 --- a/main.py +++ b/main.py @@ -10,8 +10,9 @@ else: asyncio.set_event_loop_policy(uvloop.EventLoopPolicy()) +import server.routes # noqa: F401 # Import route handlers from server import PORT, api_router, root_router -from server.routes import * + if __name__ == "__main__": app = web.Application()