From 37161832aab8ecb611f9a80e1b58fc57866cdc14 Mon Sep 17 00:00:00 2001 From: Joseph Frazier <1212jtraceur@gmail.com> Date: Wed, 5 Oct 2016 11:20:21 -0400 Subject: [PATCH] Fix flake8 errors: E123 closing bracket does not match indentation of opening bracket's line --- tests/rules/test_git_remote_seturl_add.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/rules/test_git_remote_seturl_add.py b/tests/rules/test_git_remote_seturl_add.py index 8b8667e5..8679fca7 100644 --- a/tests/rules/test_git_remote_seturl_add.py +++ b/tests/rules/test_git_remote_seturl_add.py @@ -14,8 +14,7 @@ def test_match(command): Command('git remote add origin url'), Command('git remote remove origin'), Command('git remote prune origin'), - Command('git remote set-branches origin branch') - ]) + Command('git remote set-branches origin branch')]) def test_not_match(command): assert not match(command)