Remove unused parameter from method arguments
This commit is contained in:
parent
39b635ae79
commit
c011923e3b
1 changed files with 2 additions and 2 deletions
|
@ -463,8 +463,8 @@ class VirtStoragePool(object):
|
|||
def refresh(self, entryid):
|
||||
return self.conn.refresh(entryid)
|
||||
|
||||
def info(self, facts_mode='info'):
|
||||
return self.facts(facts_mode)
|
||||
def info(self):
|
||||
return self.facts(facts_mode='info')
|
||||
|
||||
def facts(self, facts_mode='facts'):
|
||||
results = dict()
|
||||
|
|
Loading…
Reference in a new issue