diff options
Diffstat (limited to '')
-rw-r--r-- | glucometerutils/drivers/fslibre.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glucometerutils/drivers/fslibre.py b/glucometerutils/drivers/fslibre.py index 07fc504..8b3b762 100644 --- a/glucometerutils/drivers/fslibre.py +++ b/glucometerutils/drivers/fslibre.py @@ -165,7 +165,7 @@ def _parse_arresult(record: Sequence[str]) -> Optional[common.AnyReading]: custom_comments = record[29:35] for comment_index in range(6): if parsed_record["custom-comments-bitfield"] & (1 << comment_index): - comment_parts.append(custom_comments[comment_index][1:-1]) + comment_parts.append(custom_comments[comment_index]) if parsed_record["sport-flag"]: comment_parts.append("Sport") |