Fix lint/bugs
This commit is contained in:
parent
796dce86ae
commit
9281fa3992
@ -452,14 +452,14 @@ class CommandDispatcher:
|
||||
hintmanager = objreg.get('hintmanager', scope='tab')
|
||||
if where == 'prev':
|
||||
hintmanager.follow_prevnext(frame, url, prev=True, tab=tab,
|
||||
background=background, window=window)
|
||||
background=bg, window=window)
|
||||
elif where == 'next':
|
||||
hintmanager.follow_prevnext(frame, url, prev=False, tab=tab,
|
||||
background=background, window=window)
|
||||
background=bg, window=window)
|
||||
elif where == 'up':
|
||||
self._navigate_up(url, tab, background, window)
|
||||
self._navigate_up(url, tab, bg, window)
|
||||
elif where in ('decrement', 'increment'):
|
||||
self._navigate_incdec(url, where, tab, background, window)
|
||||
self._navigate_incdec(url, where, tab, bg, window)
|
||||
else:
|
||||
raise ValueError("Got called with invalid value {} for "
|
||||
"`where'.".format(where))
|
||||
|
@ -366,7 +366,7 @@ class Command:
|
||||
value = self._type_conv[param.name](value)
|
||||
return name, value
|
||||
|
||||
def _get_call_args(self, win_id):
|
||||
def _get_call_args(self, win_id): # noqa
|
||||
"""Get arguments for a function call.
|
||||
|
||||
Args:
|
||||
|
@ -168,7 +168,7 @@ class HintKeyParser(keyparser.CommandKeyParser):
|
||||
raise TypeError("Type {} is no Type member!".format(keytype))
|
||||
if keytype == self.Type.chain:
|
||||
hintmanager = objreg.get('hintmanager', scope='tab',
|
||||
window=self._win_id, tab='current')
|
||||
window=self._win_id, tab='current')
|
||||
hintmanager.fire(cmdstr)
|
||||
else:
|
||||
# execute as command
|
||||
|
@ -151,7 +151,7 @@ def _get_registry(scope, window=None, tab=None):
|
||||
"""Get the correct registry for a given scope."""
|
||||
if window is not None and scope not in ('window', 'tab'):
|
||||
raise TypeError("window is set with scope {}".format(scope))
|
||||
if tab is not None and scope != 'tab':
|
||||
if tab is not None and scope != 'tab':
|
||||
raise TypeError("tab is set with scope {}".format(scope))
|
||||
if scope == 'global':
|
||||
return global_registry
|
||||
@ -229,4 +229,3 @@ def dump_objects():
|
||||
for line in data:
|
||||
lines.append(" {}".format(line))
|
||||
return lines
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user