summaryrefslogtreecommitdiff
path: root/poezio/types.py
blob: 66ce802ff9fb66fe1da277446ca27263f1b55467 (plain)
1
2
3
4
5
6
7
8
"""Poezio type stuff"""

try:
    from typing import TypedDict, Literal
except ImportError:
    from typing_extensions import TypedDict, Literal

__all__ = ['TypedDict', 'Literal']