diff options
author | Diego Elio Pettenò <flameeyes@flameeyes.eu> | 2017-05-30 09:33:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-30 09:33:27 +0200 |
commit | 97fa9a3c329f40c5c3709854da5ba059ab3ad76f (patch) | |
tree | 958883fd20763c980e7b7f733786183835b0f20b | |
parent | Merge pull request #10 from DorianScholz/fix_fslibre_parsing (diff) | |
parent | Fix encoding info and add missing __init__.py file (diff) | |
download | glucometerutils-97fa9a3c329f40c5c3709854da5ba059ab3ad76f.tar glucometerutils-97fa9a3c329f40c5c3709854da5ba059ab3ad76f.tar.gz glucometerutils-97fa9a3c329f40c5c3709854da5ba059ab3ad76f.tar.bz2 glucometerutils-97fa9a3c329f40c5c3709854da5ba059ab3ad76f.tar.lz glucometerutils-97fa9a3c329f40c5c3709854da5ba059ab3ad76f.tar.xz glucometerutils-97fa9a3c329f40c5c3709854da5ba059ab3ad76f.tar.zst glucometerutils-97fa9a3c329f40c5c3709854da5ba059ab3ad76f.zip |
-rw-r--r-- | glucometerutils/support/__init__.py | 0 | ||||
-rw-r--r-- | glucometerutils/support/freestyle.py | 1 | ||||
-rw-r--r-- | glucometerutils/support/serial.py | 1 |
3 files changed, 2 insertions, 0 deletions
diff --git a/glucometerutils/support/__init__.py b/glucometerutils/support/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/glucometerutils/support/__init__.py diff --git a/glucometerutils/support/freestyle.py b/glucometerutils/support/freestyle.py index 6c6e294..bb891fd 100644 --- a/glucometerutils/support/freestyle.py +++ b/glucometerutils/support/freestyle.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- """Common routines to implement the FreeStyle common protocol. Protocol documentation available at diff --git a/glucometerutils/support/serial.py b/glucometerutils/support/serial.py index 84bae87..d4f352b 100644 --- a/glucometerutils/support/serial.py +++ b/glucometerutils/support/serial.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- """Common routines and base driver class for serial-based meters. """ |