projects
/
SaveMySugar
/
python3-savemysugar.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8fc5baa
)
Modem.py: use the more idiomatic "while True" instead of "while 1"
author
Antonio Ospite <ao2@ao2.it>
Mon, 14 Dec 2015 18:53:34 +0000
(19:53 +0100)
committer
Antonio Ospite <ao2@ao2.it>
Mon, 14 Dec 2015 18:53:34 +0000
(19:53 +0100)
src/savemysugar/Modem.py
patch
|
blob
|
history
diff --git
a/src/savemysugar/Modem.py
b/src/savemysugar/Modem.py
index
e510382
..
073b742
100755
(executable)
--- a/
src/savemysugar/Modem.py
+++ b/
src/savemysugar/Modem.py
@@
-99,7
+99,7
@@
class Modem(object):
resultlist = []
line = ""
- while
1
:
+ while
True
:
data = self.serial.read(1)
if len(data):
line += data.decode('UTF-8')
@@
-123,7
+123,7
@@
class Modem(object):
line = ""
def get_response_loop(self):
- while
1
:
+ while
True
:
self.get_response()
def register_callback(self, response, callback_func):