Files
flares/mne/utils/_typing.py
2025-08-19 09:13:22 -07:00

15 lines
292 B
Python

"""Shared objects used for type annotations."""
# Authors: The MNE-Python contributors.
# License: BSD-3-Clause
# Copyright the MNE-Python contributors.
import sys
if sys.version_info >= (3, 11):
from typing import Self
else:
from typing import TypeVar
Self = TypeVar("Self")