How about a less confusing repr?
„WTF, why is this a string?”
This commit is contained in:
parent
45d920850e
commit
71c2417b9d
2
node.py
2
node.py
|
@ -24,7 +24,7 @@ class Node():
|
||||||
self.interfaces[mac] = Interface()
|
self.interfaces[mac] = Interface()
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return self.macs.__repr__()
|
return '<Node %s>' % self.macs.__repr__()
|
||||||
|
|
||||||
class Interface():
|
class Interface():
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
|
Loading…
Reference in a new issue