Whitespace changes

This commit is contained in:
Florian Bruhin 2016-09-30 17:54:23 +02:00
parent 822c100f52
commit 6b76d5defa
2 changed files with 1 additions and 2 deletions

View File

@ -975,12 +975,12 @@ class CommandDispatcher:
self._tab_focus_last()
return
index = count if count is not None else index
if index is None:
self.tab_next()
return
elif index == 0:
index = self._count()
elif index < 0:
index = self._count() + index + 1

View File

@ -431,7 +431,6 @@ class TestArgument:
pass
expected = "zero_count argument cannot exist without count!"
assert str(excinfo.value) == expected
def test_no_docstring(self, caplog):