|
|
|
|
@ -114,11 +114,8 @@ from typing import Callable,Optional,List,Tuple,Dict,Any,Protocol,Type
|
|
|
|
|
try: |
|
|
|
|
from typing import TypeAlias |
|
|
|
|
except ImportError: |
|
|
|
|
try: |
|
|
|
|
from typing_extensions import TypeAlias |
|
|
|
|
except ImportError: |
|
|
|
|
# TODO: Remove this workaround for Python 3.9 |
|
|
|
|
TypeAlias = type # Fallback for Python < 3.10 without typing_extensions |
|
|
|
|
# TODO: Remove this workaround for Python 3.9 |
|
|
|
|
TypeAlias = type # Fallback for Python < 3.10 without typing_extensions |
|
|
|
|
|
|
|
|
|
from TermTk import pyTTkSlot, pyTTkSignal |
|
|
|
|
from TermTk import TTkLog |
|
|
|
|
|