Skip to content

Commit

Permalink
Stricter pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
pd0wm committed Jun 2, 2020
1 parent daf3bc9 commit b875f97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ repos:
language: system
types: [python]
args:
- --disable=R,C,W
- --disable=C,R,W0613,W0511,W0212,W0201,W0311,W0106,W0603,W0621,W0703,E1136
2 changes: 1 addition & 1 deletion can/process_dbc.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def process(in_fn, out_fn):
little_endian = None

# sanity checks on expected COUNTER and CHECKSUM rules, as packer and parser auto-compute those signals
for address, msg_name, msg_size, sigs in msgs:
for address, msg_name, _, sigs in msgs:
dbc_msg_name = dbc_name + " " + msg_name
for sig in sigs:
if checksum_type is not None:
Expand Down

0 comments on commit b875f97

Please sign in to comment.