Commit 5e83dcef authored by Dan Pascu's avatar Dan Pascu

Removed unnecessary default value for argument

parent e272b225
...@@ -271,7 +271,7 @@ class BonjourNeighbourURI(object): ...@@ -271,7 +271,7 @@ class BonjourNeighbourURI(object):
class BonjourNeighbourURIList(object): class BonjourNeighbourURIList(object):
def __init__(self, uris=[]): def __init__(self, uris):
self._uri_map = OrderedDict((uri.id, uri) for uri in uris) self._uri_map = OrderedDict((uri.id, uri) for uri in uris)
def __getitem__(self, id): def __getitem__(self, id):
return self._uri_map[id] return self._uri_map[id]
...@@ -304,7 +304,7 @@ class BonjourPresence(object): ...@@ -304,7 +304,7 @@ class BonjourPresence(object):
class BonjourNeighbour(object): class BonjourNeighbour(object):
id = WriteOnceAttribute() id = WriteOnceAttribute()
def __init__(self, id, name, hostname, uris=[], presence=None): def __init__(self, id, name, hostname, uris, presence=None):
self.id = BonjourNeighbourID(id) if isinstance(id, basestring) else id self.id = BonjourNeighbourID(id) if isinstance(id, basestring) else id
self.name = name self.name = name
self.hostname = hostname self.hostname = hostname
...@@ -456,7 +456,7 @@ class GoogleContactURI(object): ...@@ -456,7 +456,7 @@ class GoogleContactURI(object):
class GoogleContactURIList(object): class GoogleContactURIList(object):
def __init__(self, uris=[]): def __init__(self, uris):
self._uri_map = OrderedDict((uri.id, uri) for uri in uris) self._uri_map = OrderedDict((uri.id, uri) for uri in uris)
def __getitem__(self, id): def __getitem__(self, id):
return self._uri_map[id] return self._uri_map[id]
...@@ -838,7 +838,7 @@ class DummyContactURI(object): ...@@ -838,7 +838,7 @@ class DummyContactURI(object):
class DummyContactURIList(object): class DummyContactURIList(object):
def __init__(self, uris=[]): def __init__(self, uris):
self._uri_map = OrderedDict((uri.id, uri) for uri in uris) self._uri_map = OrderedDict((uri.id, uri) for uri in uris)
def __getitem__(self, id): def __getitem__(self, id):
return self._uri_map[id] return self._uri_map[id]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment