Skip to content

Commit

Permalink
Fix pylint error in the cloud helper module
Browse files Browse the repository at this point in the history
************* Module rcCloud
lib/rcCloud.py:15:20: E1101: Instance of 'Cloud' has no 'driver' member (no-member)
  • Loading branch information
cvaroqui committed Oct 2, 2018
1 parent 1c0e077 commit 4879cef
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/rcCloud.py
Expand Up @@ -5,6 +5,7 @@ class Cloud(object):
def __init__(self, s, auth):
self.cid = s
self.auth = auth
self.driver = None

def list_svcnames(self):
print("todo")
Expand Down

0 comments on commit 4879cef

Please sign in to comment.