Skip to content
Snippets Groups Projects
Unverified Commit b922b54b authored by reivilibre's avatar reivilibre Committed by GitHub
Browse files

Fix type annotation causing import time error in the Complement forking launcher. (#14084)

parent dbfc9b80
No related branches found
No related tags found
No related merge requests found
Fix type annotation causing import time error in the Complement forking launcher.
\ No newline at end of file
......@@ -55,13 +55,13 @@ import os
import signal
import sys
from types import FrameType
from typing import Any, Callable, List, Optional
from typing import Any, Callable, Dict, List, Optional
from twisted.internet.main import installReactor
# a list of the original signal handlers, before we installed our custom ones.
# We restore these in our child processes.
_original_signal_handlers: dict[int, Any] = {}
_original_signal_handlers: Dict[int, Any] = {}
class ProxiedReactor:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment