]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commitdiff
Fix the continuation line indent to pass flake8
authorAccela Zhao <bigzhao@cisco.com>
Tue, 6 Jan 2015 05:36:35 +0000 (13:36 +0800)
committerAccela Zhao <bigzhao@cisco.com>
Tue, 6 Jan 2015 07:26:50 +0000 (15:26 +0800)
The flake8 complains "E128 continuation line under-indented for
visual indent" on cinder/tests/api/contrib/test_types_manage.py
line 270. The continuation line should be indented to the opening
parentheses. This patch fixes the indention.

Change-Id: I8330e2580863ed4d53b5607c25fc5317c5a166b9

cinder/tests/api/contrib/test_types_manage.py

index fadc96bf56832e32f5307b57310c2978d81689b3..07901289e7ce228640afb307f9b8fe56bf6c0412 100644 (file)
@@ -267,4 +267,4 @@ class VolumeTypesManageApiTest(test.TestCase):
                          results['volume_type']['description'])
         if expected_results.get('expected_name'):
             self.assertEqual(expected_results['expected_name'],
-                         results['volume_type']['name'])
\ No newline at end of file
+                             results['volume_type']['name'])