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