fixed type hinting and bad return value

This commit is contained in:
Blake Harnden 2020-03-22 21:15:11 -07:00
parent 14e708681c
commit 38f9f44cdf

View file

@ -474,7 +474,6 @@ class BasicRangeModel(WirelessModel):
""" """
self.values_from_config(config) self.values_from_config(config)
self.setlinkparams() self.setlinkparams()
return True
def create_link_data( def create_link_data(
self, self,
@ -790,7 +789,7 @@ class WayPointMobility(WirelessModel):
""" """
self.queue_copy = list(self.queue) self.queue_copy = list(self.queue)
def loopwaypoints(self) -> None: def loopwaypoints(self) -> bool:
""" """
Restore backup copy of waypoints when looping. Restore backup copy of waypoints when looping.