mirror of
https://github.com/malmeloo/FindMy.py.git
synced 2026-04-18 06:54:01 +02:00
9 lines
173 B
Python
9 lines
173 B
Python
"""Utility types."""
|
|
|
|
from collections.abc import Coroutine
|
|
from typing import TypeAlias, TypeVar
|
|
|
|
_T = TypeVar("_T")
|
|
|
|
MaybeCoro: TypeAlias = _T | Coroutine[None, None, _T]
|