Commit fcbf9176 authored by Vincent Pelletier's avatar Vincent Pelletier Committed by Romain Courteaud

Drop unused return value.

parent e1098bb3
...@@ -557,9 +557,6 @@ class Tap: ...@@ -557,9 +557,6 @@ class Tap:
def createWithOwner(self, owner, attach_to_tap=False): def createWithOwner(self, owner, attach_to_tap=False):
""" """
Create a tap interface on the system. Create a tap interface on the system.
Return:
True: Everything went right.
""" """
# some systems does not have -p switch for tunctl # some systems does not have -p switch for tunctl
...@@ -579,8 +576,6 @@ class Tap: ...@@ -579,8 +576,6 @@ class Tap:
if attach_to_tap: if attach_to_tap:
threading.Thread(target=self.attach).start() threading.Thread(target=self.attach).start()
return True
class Bridge: class Bridge:
"Bridge represent a bridge on the system" "Bridge represent a bridge on the system"
......
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