Skip to content

Commit 9424fa2

Browse files
authored
fix(mypy): ignore type err preventing build (#1991)
1 parent a9c3d92 commit 9424fa2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

brownie/_cli/console.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ def raw_input(self, prompt=""):
265265
finally:
266266
self.console_printer.finish()
267267

268-
def showsyntaxerror(self, filename: Optional[str] = None) -> None:
268+
def showsyntaxerror(self, filename: Optional[str] = None) -> None: # type: ignore [override]
269269
tb = color.format_tb(sys.exc_info()[1]) # type: ignore [arg-type]
270270
self.write(tb + "\n")
271271

0 commit comments

Comments
 (0)