summaryrefslogtreecommitdiffstats
path: root/glucometerutils/drivers/td4277.py
diff options
context:
space:
mode:
Diffstat (limited to 'glucometerutils/drivers/td4277.py')
-rw-r--r--glucometerutils/drivers/td4277.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/glucometerutils/drivers/td4277.py b/glucometerutils/drivers/td4277.py
index 443f69c..7ee177d 100644
--- a/glucometerutils/drivers/td4277.py
+++ b/glucometerutils/drivers/td4277.py
@@ -23,8 +23,8 @@ from typing import Generator, NoReturn, Optional, Tuple
import construct
-from glucometerutils import common, exceptions
-from glucometerutils.support import driver_base, serial
+from glucometerutils import common, driver, exceptions
+from glucometerutils.support import serial
class Direction(enum.Enum):
@@ -132,7 +132,7 @@ def _select_record(record_id: int) -> bytes:
return _READING_SELECTION_STRUCT.build({"record_id": record_id})
-class Device(serial.SerialDevice, driver_base.GlucometerDriver):
+class Device(serial.SerialDevice, driver.GlucometerDriver):
BAUDRATE = 19200
TIMEOUT = 0.5