We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b287255 commit 5acbca5Copy full SHA for 5acbca5
ipykernel/zmqshell.py
@@ -369,7 +369,7 @@ def clear(self, arg_s):
369
370
if os.name == "nt":
371
# This is the usual name in windows
372
- cls = line_magic("cls")(clear)
+ cls = line_magic("cls")(clear) # type: ignore[arg-type,var-annotated]
373
374
# Terminal pagers won't work over pexpect, but we do have our own pager
375
@@ -390,7 +390,7 @@ def less(self, arg_s):
390
cont = fid.read()
391
page.page(cont)
392
393
- more = line_magic("more")(less)
+ more = line_magic("more")(less) # type: ignore[arg-type,var-annotated]
394
395
# Man calls a pager, so we also need to redefine it
396
if os.name == "posix":
0 commit comments