From 283eb09c192a2dade1db948fef72ade0b7764a9b Mon Sep 17 00:00:00 2001 From: Joseph Frazier <1212jtraceur@gmail.com> Date: Wed, 5 Oct 2016 11:14:33 -0400 Subject: [PATCH] Fix flake8 errors: E231 missing whitespace after ',' --- tests/rules/test_fab_command_not_found.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rules/test_fab_command_not_found.py b/tests/rules/test_fab_command_not_found.py index 361c3742..da596b6b 100644 --- a/tests/rules/test_fab_command_not_found.py +++ b/tests/rules/test_fab_command_not_found.py @@ -45,5 +45,5 @@ def test_not_match(command): 'fab prepare_extension:version=2016 deploy:beta=true -H the.fuck'), ]) def test_get_new_command(script, result): - command = Command(script, stdout,stderr) + command = Command(script, stdout, stderr) assert get_new_command(command) == result