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 02545e9 commit 09e8eedCopy full SHA for 09e8eed
IPython/core/prefilter.py
@@ -512,8 +512,10 @@ def check(self, line_info):
512
callable(oinfo.obj)
513
and (not self.exclude_regexp.match(line_info.the_rest))
514
and self.function_name_regexp.match(line_info.ifun)
515
- and line_info.raw_the_rest.startswith(" ")
516
- or not line_info.raw_the_rest.strip()
+ and (
+ line_info.raw_the_rest.startswith(" ")
517
+ or not line_info.raw_the_rest.strip()
518
+ )
519
):
520
return self.prefilter_manager.get_handler_by_name("auto")
521
else:
0 commit comments