summaryrefslogtreecommitdiffstats
path: root/glucometerutils/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'glucometerutils/common.py')
-rw-r--r--glucometerutils/common.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/glucometerutils/common.py b/glucometerutils/common.py
index 4af2001..4c7694c 100644
--- a/glucometerutils/common.py
+++ b/glucometerutils/common.py
@@ -66,6 +66,7 @@ class GlucoseReading:
default=MeasurementMethod.BLOOD_SAMPLE,
validator=attr.validators.in_(
MeasurementMethod)) # type: MeasurementMethod
+ device_id = attr.ib(default=None) # type: int
def get_value_as(self, to_unit):
# type: (Unit) -> float
@@ -89,6 +90,7 @@ class KetoneReading:
timestamp = attr.ib() # type: datetime.datetime
value = attr.ib() # type: float
comment = attr.ib(default='') # type: Text
+ device_id = attr.ib(default=None) # type: int
def as_csv(self, unit):
"""Returns the reading as a formatted comma-separated value string."""
@@ -106,6 +108,7 @@ class TimeAdjustment:
default=MeasurementMethod.TIME,
validator=attr.validators.in_(
MeasurementMethod)) # type: MeasurementMethod
+ device_id = attr.ib(default=None) # type: int
def as_csv(self, unit):
del unit