diff options
author | Joshua Powers <josh.powers@canonical.com> | 2020-06-02 08:24:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-02 11:24:29 -0400 |
commit | 5f7825e22241423322dbe628de1b00289cf34114 (patch) | |
tree | 1a2e8d8b3fc29f02256383df4012399b39600967 /cloudinit/cmd/tests | |
parent | d2b05719a6163e874ca40234a0b85dc2fea260c0 (diff) | |
download | vyos-cloud-init-5f7825e22241423322dbe628de1b00289cf34114.tar.gz vyos-cloud-init-5f7825e22241423322dbe628de1b00289cf34114.zip |
test: fix all flake8 E241 (#403)
Remove extra spaces after a ','
Diffstat (limited to 'cloudinit/cmd/tests')
-rw-r--r-- | cloudinit/cmd/tests/test_query.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/cmd/tests/test_query.py b/cloudinit/cmd/tests/test_query.py index 6d36a4ea..cb15b2d2 100644 --- a/cloudinit/cmd/tests/test_query.py +++ b/cloudinit/cmd/tests/test_query.py @@ -261,7 +261,7 @@ class TestQuery(CiTestCase): args = self.args( debug=False, dump_all=False, format=None, instance_data=self.instance_data, list_keys=True, user_data='ud', - vendor_data='vd', varname='top') + vendor_data='vd', varname='top') with mock.patch('sys.stderr', new_callable=StringIO) as m_stderr: with mock.patch('sys.stdout', new_callable=StringIO) as m_stdout: with mock.patch('os.getuid') as m_getuid: |