summaryrefslogtreecommitdiffstats
path: root/ptpython/filters.py
diff options
context:
space:
mode:
Diffstat (limited to 'ptpython/filters.py')
-rw-r--r--ptpython/filters.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/ptpython/filters.py b/ptpython/filters.py
index be85edf..a2079fd 100644
--- a/ptpython/filters.py
+++ b/ptpython/filters.py
@@ -1,3 +1,5 @@
+from __future__ import annotations
+
from typing import TYPE_CHECKING
from prompt_toolkit.filters import Filter
@@ -9,7 +11,7 @@ __all__ = ["HasSignature", "ShowSidebar", "ShowSignature", "ShowDocstring"]
class PythonInputFilter(Filter):
- def __init__(self, python_input: "PythonInput") -> None:
+ def __init__(self, python_input: PythonInput) -> None:
super().__init__()
self.python_input = python_input