Skip to content

Commit 6706f7b

Browse files
committed
fix: Remove use to event loop policies, removed in Python 3.16
1 parent 5d10615 commit 6706f7b

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

httpstan/app.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,12 @@
33
Configure the server and schedule startup and shutdown tasks.
44
"""
55

6-
import asyncio
76
import logging
87

98
import aiohttp.web
109

1110
import httpstan.routes
1211

13-
try:
14-
from uvloop import EventLoopPolicy
15-
except ImportError:
16-
EventLoopPolicy = asyncio.DefaultEventLoopPolicy
17-
18-
1912
logger = logging.getLogger("httpstan")
2013

2114

0 commit comments

Comments
 (0)