Reindent kwargs

This commit is contained in:
Wieland Hoffmann
2017-03-20 18:51:25 +01:00
parent c852e0caed
commit 68409e2612

View File

@@ -454,8 +454,8 @@ class XmlWebService(QtCore.QObject):
priority=priority, important=important, refresh=refresh)
def _find(self, entitytype, handler,
xml=True, priority=True, important=True, mblogin=False,
cacheloadcontrol=None, refresh=False, **kwargs):
xml=True, priority=True, important=True, mblogin=False,
cacheloadcontrol=None, refresh=False, **kwargs):
host = config.setting["server_host"]
port = config.setting["server_port"]
filters = []
@@ -487,8 +487,8 @@ class XmlWebService(QtCore.QObject):
queryargs[str(name)] = value
path = "/ws/2/%s" % (entitytype)
return self.get(host, port, path, handler, queryargs=queryargs,
xml=xml, priority=priority, important=important, mblogin=mblogin,
cacheloadcontrol=cacheloadcontrol, refresh=refresh)
xml=xml, priority=priority, important=important, mblogin=mblogin,
cacheloadcontrol=cacheloadcontrol, refresh=refresh)
def find_releases(self, handler, **kwargs):
return self._find('release', handler, **kwargs)