doc/.venv/Lib/site-packages/cerulean/util.py

8 lines
239 B
Python
Raw Normal View History

from typing import Type, TYPE_CHECKING
# See https://stackoverflow.com/questions/49959656/typing-exit-in-3-5-fails-on-runtime-but-typechecks
if TYPE_CHECKING:
BaseExceptionType = Type[BaseException]
else:
BaseExceptionType = None