Skip to content

Commit 46cdd88

Browse files
authored
Sync typeshed (#7847)
1 parent 78f2df9 commit 46cdd88

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test-data/samples/crawl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -835,7 +835,7 @@ def main() -> None:
835835
loop = asyncio.SelectorEventLoop() # type: ignore
836836
asyncio.set_event_loop(loop)
837837
else:
838-
loop = asyncio.get_event_loop()
838+
loop = asyncio.get_event_loop() # type: ignore
839839

840840
roots = {fix_url(root) for root in args.roots}
841841

test-data/samples/crawl2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -824,7 +824,7 @@ def main() -> None:
824824
loop = asyncio.SelectorEventLoop() # type: ignore
825825
asyncio.set_event_loop(loop)
826826
else:
827-
loop = asyncio.get_event_loop()
827+
loop = asyncio.get_event_loop() # type: ignore
828828

829829
roots = {fix_url(root) for root in args.roots}
830830

0 commit comments

Comments
 (0)