mirror of https://github.com/Desuuuu/klipper.git
buildcommands: Remove unnecessary spaces from data dictionary
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
9db0bec792
commit
150cae1d1f
|
@ -409,7 +409,7 @@ class HandleIdentify:
|
||||||
data = {}
|
data = {}
|
||||||
for h in Handlers:
|
for h in Handlers:
|
||||||
h.update_data_dictionary(data)
|
h.update_data_dictionary(data)
|
||||||
datadict = json.dumps(data)
|
datadict = json.dumps(data, separators=(',', ':'))
|
||||||
|
|
||||||
# Write data dictionary
|
# Write data dictionary
|
||||||
if options.write_dictionary:
|
if options.write_dictionary:
|
||||||
|
|
Loading…
Reference in New Issue