summaryrefslogtreecommitdiffstats
path: root/glucometerutils/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'glucometerutils/common.py')
-rw-r--r--glucometerutils/common.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/glucometerutils/common.py b/glucometerutils/common.py
index 2760ce8..51a2dd4 100644
--- a/glucometerutils/common.py
+++ b/glucometerutils/common.py
@@ -56,7 +56,6 @@ def convert_glucose_unit(value: float, from_unit: Unit, to_unit: Unit) -> float:
@attr.s(auto_attribs=True)
class GlucoseReading:
-
timestamp: datetime.datetime
value: float
meal: Meal = attr.ib(default=Meal.NONE, validator=attr.validators.in_(Meal))
@@ -88,7 +87,6 @@ class GlucoseReading:
@attr.s(auto_attribs=True)
class KetoneReading:
-
timestamp: datetime.datetime
value: float
comment: str = ""