mirror of
https://github.com/MISP/misp-galaxy.git
synced 2024-11-26 16:57:18 +00:00
6 lines
242 B
Python
6 lines
242 B
Python
# flake8: noqa
|
|
try:
|
|
from typing import Literal, Protocol, TypedDict # lgtm [py/unused-import]
|
|
except ImportError:
|
|
from typing_extensions import Literal # lgtm [py/unused-import]
|
|
from typing_extensions import Protocol, TypedDict
|