diff --git a/scos_actions/hardware/gps_iface.py b/scos_actions/hardware/gps_iface.py index 36b374dc..ac220ef7 100644 --- a/scos_actions/hardware/gps_iface.py +++ b/scos_actions/hardware/gps_iface.py @@ -1,13 +1,13 @@ from abc import ABC, abstractmethod -from scos_actions.hardware.sensor import Sensor - class GPSInterface(ABC): @abstractmethod - def get_location(self, sensor : Sensor, timeout_s : float=1): + def get_location( + self, sensor: "scos_actions.hardware.sensor.Sensor", timeout_s: float = 1 + ): pass @abstractmethod - def get_gps_time(self, sensor : Sensor): + def get_gps_time(self, sensor: "scos_actions.hardware.sensor.Sensor"): pass