pylint: enforce indentation (W0311) (#24039)

* pylint: enforce indentation (W0311)

* few more
old-commit-hash: 8af20af66ddaa6bc06d7f72f9134aa9afeed3ed8
This commit is contained in:
Adeeb Shihadeh
2022-03-24 23:23:29 -07:00
committed by GitHub
parent e929e32bc7
commit bd71c594a2
24 changed files with 191 additions and 192 deletions
+6 -6
View File
@@ -10,11 +10,11 @@ candidate_cars = all_legacy_fingerprint_cars()
for addr, l in fingerprint.items():
dat = messaging.new_message('can', 1)
dat = messaging.new_message('can', 1)
msg = dat.can[0]
msg.address = addr
msg.dat = " " * l
msg = dat.can[0]
msg.address = addr
msg.dat = " " * l
candidate_cars = eliminate_incompatible_cars(msg, candidate_cars)
print(candidate_cars)
candidate_cars = eliminate_incompatible_cars(msg, candidate_cars)
print(candidate_cars)