Files
babi/babi/_types.py
2020-03-16 15:19:21 -07:00

7 lines
126 B
Python

from typing import TYPE_CHECKING
if TYPE_CHECKING:
from typing import Protocol # python3.8+
else:
Protocol = object