Skip to content

Commit c3503bc

Browse files
fix: cleanup
1 parent d49d6fc commit c3503bc

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

indico/client/client.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -251,12 +251,3 @@ async def paginate(
251251
while request.has_next_page:
252252
r = await self._http.execute_request(request)
253253
yield r
254-
255-
256-
# class test(GraphQLRequest[int]):
257-
# def process_response(self, response: "Payload") -> int:
258-
# a: "Payload" = super().parse_payload(response)
259-
# return a["a"]
260-
261-
262-
# a: str = IndicoClient().call(test(query=""))

indico/http/retry.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
import time
33
from functools import wraps
44
from random import randint
5-
from typing import TYPE_CHECKING, Awaitable
5+
from typing import TYPE_CHECKING
66

77
if TYPE_CHECKING: # pragma: no cover
8-
from typing import Callable, Optional, Tuple, Type, TypeVar, Union
8+
from typing import Awaitable, Callable, Optional, Tuple, Type, TypeVar, Union
99

1010
from typing_extensions import ParamSpec
1111

0 commit comments

Comments
 (0)