mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-21 18:23:35 +00:00
14 lines
268 B
Python
14 lines
268 B
Python
# SPDX-License-Identifier: MIT
|
|
|
|
import sys
|
|
|
|
|
|
# try/except ImportError does NOT work.
|
|
# c.f. https://github.com/python/mypy/issues/8520
|
|
if sys.version_info >= (3, 8):
|
|
from typing import Literal
|
|
else:
|
|
from typing_extensions import Literal
|
|
|
|
__all__ = ["Literal"]
|