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

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

__all__ = ['TypedDict']