Skip to content

Commit c14b4d7

Browse files
zaitcevlbragstad
authored andcommitted
Resolve PEP8
No idea how this happened, but reviews started failing the pep8 gate job. The failures are legitimate, see the commit. I guess the pep8 tests became smarter and found these issues. Change-Id: Id9a0dad644134dafd68eed37fe8f41c583d7a619 (cherry picked from commit 52ff421) (cherry picked from commit 37e2c536e4e0b59ec8cb3edd165a0c76d7d8800c)
1 parent ce825bb commit c14b4d7

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

openstackclient/tests/functional/identity/v3/test_project.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ def test_project_set(self):
7979
'--disable '
8080
'--property k0=v0 '
8181
'%(name)s' % {'new_name': new_project_name,
82-
'domain': self.domain_name,
8382
'name': project_name})
8483
self.assertEqual(0, len(raw_output))
8584
# check project details

openstackclient/tests/unit/network/v2/fakes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1832,7 +1832,7 @@ def create_one_port_forwarding(attrs=None):
18321832
"""
18331833
attrs = attrs or {}
18341834
floatingip_id = (
1835-
attrs.get('floatingip_id') or'floating-ip-id-' + uuid.uuid4().hex
1835+
attrs.get('floatingip_id') or 'floating-ip-id-' + uuid.uuid4().hex
18361836
)
18371837
# Set default attributes.
18381838
port_forwarding_attrs = {

0 commit comments

Comments
 (0)