summaryrefslogtreecommitdiff
path: root/poezio/types.py
diff options
context:
space:
mode:
Diffstat (limited to 'poezio/types.py')
-rw-r--r--poezio/types.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/poezio/types.py b/poezio/types.py
new file mode 100644
index 00000000..66ce802f
--- /dev/null
+++ b/poezio/types.py
@@ -0,0 +1,8 @@
+"""Poezio type stuff"""
+
+try:
+ from typing import TypedDict, Literal
+except ImportError:
+ from typing_extensions import TypedDict, Literal
+
+__all__ = ['TypedDict', 'Literal']