Lint for GCE Closes #867
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/b93d0053 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/b93d0053 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/b93d0053 Branch: refs/heads/trunk Commit: b93d005388e1c136c167e74785fe9f27f25a0bd2 Parents: 6395d62 Author: Allard Hoeve <[email protected]> Authored: Fri Sep 23 16:58:28 2016 +0200 Committer: Anthony Shaw <[email protected]> Committed: Fri Sep 30 15:37:02 2016 +1000 ---------------------------------------------------------------------- libcloud/compute/drivers/gce.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/b93d0053/libcloud/compute/drivers/gce.py ---------------------------------------------------------------------- diff --git a/libcloud/compute/drivers/gce.py b/libcloud/compute/drivers/gce.py index e9e5471..6b00491 100644 --- a/libcloud/compute/drivers/gce.py +++ b/libcloud/compute/drivers/gce.py @@ -710,7 +710,8 @@ class GCESnapshot(VolumeSnapshot): def __init__(self, id, name, size, status, driver, extra=None, created=None): self.status = status - super(GCESnapshot, self).__init__(id, driver, size, extra, created, name=name) + super(GCESnapshot, self).__init__(id, driver, size, extra, + created, name=name) class GCETargetHttpProxy(UuidMixin):
