fixup: useless_parenthesis

This commit is contained in:
Rémy Léone
2013-12-20 14:43:30 +01:00
parent a6a0cb4331
commit 824afb84c9
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -168,7 +168,7 @@ class Topo(object):
'''
if src in self.ports and dst in self.ports[src]:
assert dst in self.ports and src in self.ports[dst]
return (self.ports[src][dst], self.ports[dst][src])
return self.ports[src][dst], self.ports[dst][src]
def linkInfo( self, src, dst ):
"Return link metadata"