Fix linting issue Signed-off-by: Quentin Pradet <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/d04f8d63 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/d04f8d63 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/d04f8d63 Branch: refs/heads/trunk Commit: d04f8d63024b60f1fbfdb74d1d3e5d1d502a8128 Parents: fa2b484 Author: Boris Chazalet <[email protected]> Authored: Fri Mar 9 09:27:05 2018 +0100 Committer: Quentin Pradet <[email protected]> Committed: Sat Mar 10 08:27:06 2018 +0400 ---------------------------------------------------------------------- libcloud/test/compute/test_gce.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/d04f8d63/libcloud/test/compute/test_gce.py ---------------------------------------------------------------------- diff --git a/libcloud/test/compute/test_gce.py b/libcloud/test/compute/test_gce.py index 657c5cc..ab92693 100644 --- a/libcloud/test/compute/test_gce.py +++ b/libcloud/test/compute/test_gce.py @@ -3561,8 +3561,8 @@ class GCEMockHttp(MockHttp): 'global_instanceTemplates_my_instance_template1.json') return (httplib.OK, body, self.json_hdr, httplib.responses[httplib.OK]) - def _global_instanceTemplates_my_instance_template_shared_network(self, method, url, - body, headers): + def _global_instanceTemplates_my_instance_template_shared_network( + self, method, url, body, headers): body = self.fixtures.load( 'global_instanceTemplates_my_instance_template_shared_network.json') return (httplib.OK, body, self.json_hdr, httplib.responses[httplib.OK])
