aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/msgproto.py
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2017-06-09 23:39:46 -0400
committerKevin O'Connor <kevin@koconnor.net>2017-06-10 00:12:14 -0400
commit8419e152bbd23ae02e1728fe2466cdfbb2d1ddfa (patch)
tree341e0345637e96c59e3893d564fa43d6138dae4c /klippy/msgproto.py
parent1bc3e0a678bd1b27264226c523841b60d7236a45 (diff)
downloadkutter-8419e152bbd23ae02e1728fe2466cdfbb2d1ddfa.tar.gz
kutter-8419e152bbd23ae02e1728fe2466cdfbb2d1ddfa.tar.xz
kutter-8419e152bbd23ae02e1728fe2466cdfbb2d1ddfa.zip
klippy: Remove some obscure python2 dependencies
Don't modify dictionaries while iterating them and be careful to use // when doing an integer divide. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/msgproto.py')
-rw-r--r--klippy/msgproto.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/msgproto.py b/klippy/msgproto.py
index 24f577f4..df7b6717 100644
--- a/klippy/msgproto.py
+++ b/klippy/msgproto.py
@@ -252,7 +252,7 @@ class MessageParser:
def _parse_buffer(self, value):
tval = int(value, 16)
out = []
- for i in range(len(value)/2):
+ for i in range(len(value) // 2):
out.append(tval & 0xff)
tval >>= 8
out.reverse()