mirror of
https://github.com/malmeloo/FindMy.py.git
synced 2026-04-18 13:54:01 +02:00
8 lines
120 B
Python
8 lines
120 B
Python
"""Utility types."""
|
|
|
|
from typing import Coroutine, TypeVar
|
|
|
|
T = TypeVar("T")
|
|
|
|
MaybeCoro = T | Coroutine[None, None, T]
|