Fixed an error that could cause the app to crash if cloned from the repository.

This commit is contained in:
janis
2022-05-16 16:01:35 +02:00
parent ab3159119f
commit d04063c2e9
6 changed files with 33 additions and 24 deletions

View File

@@ -47,7 +47,7 @@ class Com:
return 0
def decode_int(self, value):
self.i = int(value, base = 16)
self.i = int(value, base=16)
return self.i
def decode_float(self, value):