two spaces before inline comment

master
Adeeb Shihadeh 2020-05-31 00:56:04 -07:00
parent 73685b609d
commit 5d33ec0f18
3 changed files with 6 additions and 5 deletions

View File

@ -19,7 +19,8 @@ def process(in_fn, out_fn):
can_dbc = dbc(in_fn)
msgs = [(address, msg_name, msg_size, sorted(msg_sigs, key=lambda s: s.name not in ("COUNTER", "CHECKSUM"))) # process counter and checksums first
# process counter and checksums first
msgs = [(address, msg_name, msg_size, sorted(msg_sigs, key=lambda s: s.name not in ("COUNTER", "CHECKSUM")))
for address, ((msg_name, msg_size), msg_sigs) in sorted(can_dbc.msgs.items()) if msg_sigs]
def_vals = {a: sorted(set(b)) for a, b in can_dbc.def_vals.items()} # remove duplicates