From 7f86779be0c10b78022a03de6f98d53477d5b377 Mon Sep 17 00:00:00 2001 From: Erik Johnson Date: Fri, 27 Apr 2018 09:18:53 -0500 Subject: [PATCH] Lint fix --- tests/unit/modules/test_pip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/modules/test_pip.py b/tests/unit/modules/test_pip.py index 023a5ac3b3..02b0f839fd 100644 --- a/tests/unit/modules/test_pip.py +++ b/tests/unit/modules/test_pip.py @@ -50,7 +50,7 @@ class PipTestCase(TestCase, LoaderModuleMockMixin): 'git+https://github.com/saltstack/salt-testing.git#egg=SaltTesting' ] - expected = [sys.executable, '-m','pip', 'install'] + expected = [sys.executable, '-m', 'pip', 'install'] for item in editables: expected.extend(['--editable', item])