Remove unused parameter from method arguments

This commit is contained in:
Maciej Delmanowski 2015-07-25 18:18:39 +02:00 committed by Matt Clay
parent b42bc91258
commit 6c4f50a2ea

View file

@ -366,8 +366,8 @@ class VirtNetwork(object):
def define(self, entryid, xml):
return self.conn.define_from_xml(entryid, xml)
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()