create_qvlan: remove unused arguments

Signed-off-by: Matthew Stidham <stidmatt@gmail.com>
This commit is contained in:
Matthew Stidham
2021-12-07 09:25:58 -08:00
parent ae94318f07
commit 4290214993

View File

@@ -59,9 +59,7 @@ class CreateQVlan(Realm):
def build(self):
print("Creating QVLAN stations")
self.qvlan_profile.create(
admin_down=False,
sleep_time=.5,
debug=self.debug)
sleep_time=.5)
def main():