From da1fbf379280f58429f382502dbb5d3cc753d0be Mon Sep 17 00:00:00 2001 From: mjv761 <michael.vanderkamp@usask.ca> Date: Sun, 27 Sep 2020 18:47:30 -0600 Subject: [PATCH] Satisfy flake8 line-length limit --- pudb/debugger.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pudb/debugger.py b/pudb/debugger.py index 123bb65..64b7967 100644 --- a/pudb/debugger.py +++ b/pudb/debugger.py @@ -1707,7 +1707,8 @@ class DebuggerUI(FrameVarInfoKeeper): self.cmdline_edit.set_edit_text("") finally: if sys.stdout.getvalue(): - self.add_cmdline_content(sys.stdout.getvalue(), "command line output") + self.add_cmdline_content(sys.stdout.getvalue(), + "command line output") sys.stdin = prev_sys_stdin sys.stdout = prev_sys_stdout