projects
/
SaveMySugar
/
python3-savemysugar.git
/ blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Put standard modules imports before other imports
[SaveMySugar/python3-savemysugar.git]
/
src
/
measure_call_setup_time_from_android.py
diff --git
a/src/measure_call_setup_time_from_android.py
b/src/measure_call_setup_time_from_android.py
index
1738513
..
f89fce7
100755
(executable)
--- a/
src/measure_call_setup_time_from_android.py
+++ b/
src/measure_call_setup_time_from_android.py
@@
-22,11
+22,12
@@
# setup time" (e.g. 17) and then send a message from the Android app while
# measuring the times with this program.
# setup time" (e.g. 17) and then send a message from the Android app while
# measuring the times with this program.
-from savemysugar.cumulative_average import cumulative_average
-from savemysugar.Modem import Modem
import subprocess
import time
import subprocess
import time
+from savemysugar.cumulative_average import cumulative_average
+from savemysugar.Modem import Modem
+
class Ring(object):
time = -1
class Ring(object):
time = -1