Skip to content

Commit 6bf1c1a

Browse files
committed
Fix type checking
1 parent 0d8f4b7 commit 6bf1c1a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/recnetpy/rest/http_client.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,16 @@
33

44
from asyncio import Lock, get_running_loop, AbstractEventLoop, sleep
55
from aiohttp import ClientSession, TCPConnector
6-
from .response import Response
76

87
from .exceptions import *
98

109
if TYPE_CHECKING:
1110
from .request import Request
11+
from .response import Response
1212

13-
1413
RATE_LIMIT = 30
1514

16-
def verify_status(resp: Response):
15+
def verify_status(resp: 'Response'):
1716
match resp.status:
1817
case 200:
1918
...

0 commit comments

Comments
 (0)