From b624982daf442c2419654d459bc3678cd7cadb93 Mon Sep 17 00:00:00 2001 From: Accela Zhao Date: Tue, 6 Jan 2015 13:36:35 +0800 Subject: [PATCH] Fix the continuation line indent to pass flake8 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinder/tests/api/contrib/test_types_manage.py b/cinder/tests/api/contrib/test_types_manage.py index fadc96bf5..07901289e 100644 --- a/cinder/tests/api/contrib/test_types_manage.py +++ b/cinder/tests/api/contrib/test_types_manage.py @@ -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']) -- 2.45.2