Skip to content

Commit 4ec5d76

Browse files
committed
Ignore a mypy bug
1 parent 044bc57 commit 4ec5d76

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bpython/curtsiesfrontend/interpreter.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ def __init__(
5151
**options: Union[str, bool, None],
5252
) -> None:
5353
self.f_strings = {k: f"\x01{v}" for k, v in color_scheme.items()}
54-
super().__init__(**options)
54+
# FIXME: mypy currently fails to handle this properly
55+
super().__init__(**options) # type: ignore
5556

5657
def format(self, tokensource, outfile):
5758
o = ""

0 commit comments

Comments
 (0)