Files
FindMy.py/findmy/util/types.py
2024-02-10 17:25:54 +01:00

8 lines
120 B
Python

"""Utility types."""
from typing import Coroutine, TypeVar
T = TypeVar("T")
MaybeCoro = T | Coroutine[None, None, T]