1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-02-21 04:18:55 +00:00

#N/A: Fix flake8 warnings

This commit is contained in:
Vladimir Iakovlev 2017-04-10 23:23:23 +02:00
parent fc09818351
commit 6322dbd9ed
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ def test_match(script):
assert match(Command(script))
@pytest.mark.parametrize('script', ['git branch' 'vimfile'])
@pytest.mark.parametrize('script', ['git branch', 'vimfile'])
def test_not_match(script):
assert not match(Command(script))

View File

@ -1,4 +1,4 @@
from thefuck.utils import get_all_executables, memoize, which
from thefuck.utils import get_all_executables, memoize
@memoize