Skip to content

Commit 037f4bb

Browse files
committed
FMT: re-format
1 parent 4cf4e93 commit 037f4bb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/gnuplot_kernel/kernel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ def do_shutdown(self, restart):
262262
def get_kernel_help_on(self, info, level=0, none_on_fail=False):
263263
obj = info.get("help_obj", "")
264264
if not obj or len(obj.split()) > 1:
265-
return None if none_on_fail else ""
265+
return None if none_on_fail else ""
266266
res = cast("TextOutput", self.do_execute_direct("help %s" % obj))
267267
text = PROMPT_REMOVE_RE.sub("", res.output)
268268
self.bad_prompt_warning()

src/gnuplot_kernel/replwrap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def validate_input(self, code):
8585
def send(self, cmd):
8686
self.child.send(cmd + "\r")
8787

88-
def _force_prompt(self, timeout: float=30, n=4):
88+
def _force_prompt(self, timeout: float = 30, n=4):
8989
"""
9090
Force prompt
9191
"""

0 commit comments

Comments
 (0)