15 lines
292 B
Python
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")
|