Skip to content

Commit 7084802

Browse files
committed
Fix pep8 error
1 parent 35b694d commit 7084802

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1132,8 +1132,8 @@ def runTest(self):
11321132

11331133
# Containers are still there
11341134
retrieved = [
1135-
x for x in containers if x['Id'].startswith(container1_id)
1136-
or x['Id'].startswith(container2_id)
1135+
x for x in containers if x['Id'].startswith(container1_id) or
1136+
x['Id'].startswith(container2_id)
11371137
]
11381138
self.assertEqual(len(retrieved), 2)
11391139

0 commit comments

Comments
 (0)