Flake8 fixes

This commit is contained in:
Andreas Kloeckner 2018-10-01 23:50:57 -05:00
parent 7700155baa
commit 2bc7dc242c
2 changed files with 13 additions and 14 deletions

View File

@ -76,7 +76,9 @@ def _tty_override():
def _open_tty(tty_path):
import io, os, sys
import io
import os
import sys
if sys.version_info[0] == 2:
tty_file = open(tty_path, 'r+b', buffering=0)
term_size = None

View File

@ -159,7 +159,8 @@ OTHER DEALINGS IN THE SOFTWARE.
# {{{ debugger interface
class Debugger(bdb.Bdb):
def __init__(self, stdin=None, stdout=None, term_size=None, steal_output=False, **kwargs):
def __init__(self, stdin=None, stdout=None, term_size=None, steal_output=False,
**kwargs):
# Pass remaining kwargs to python debugger framework
bdb.Bdb.__init__(self, **kwargs)
self.ui = DebuggerUI(self, stdin=stdin, stdout=stdout, term_size=term_size)
@ -615,10 +616,8 @@ class DirectSourceCodeProvider(SourceCodeProvider):
def __eq__(self, other):
return (
type(self) == type(other)
and
self.function_name == other.function_name
and
self.code is other.code)
and self.function_name == other.function_name
and self.code is other.code)
def identifier(self):
return "<source code of function %s>" % self.function_name
@ -862,10 +861,10 @@ class DebuggerUI(FrameVarInfoKeeper):
"Show methods", iinfo.show_methods)
lb = urwid.ListBox(urwid.SimpleListWalker(
id_segment +
rb_grp_show + [urwid.Text("")] +
rb_grp_access + [urwid.Text("")] +
[
id_segment
+ rb_grp_show + [urwid.Text("")]
+ rb_grp_access + [urwid.Text("")]
+ [
wrap_checkbox,
expanded_checkbox,
highlighted_checkbox,
@ -1888,11 +1887,9 @@ class DebuggerUI(FrameVarInfoKeeper):
CONFIG["display"] == "curses"
or (
CONFIG["display"] == "auto"
and
not (
and not (
os.environ.get("TERM", "").startswith("xterm")
or
os.environ.get("TERM", "").startswith("rxvt")
or os.environ.get("TERM", "").startswith("rxvt")
)))
if (want_curses_display