Commit
e28454ea4b120a7ab96e133589a7b7b3ee8c0846
by Oliver Smith
*.py: ignore: E722 Do not use bare `except`
Let the ruff linter not complain about the existing cases of "Do not use bare `except`" so we get the linter to pass without changing the existing logic here. With this we don't disable the check globally, so we can consider making stricter excepts in new code.
Commit
c8ec5d58507718165b863c36b51e29e9afd1a4a1
by Oliver Smith
scripts/verify_log_statements: fix undefined name
Append it to "errors_found" instead of undefined variable "ignored". This makes it work similarly to further above:
# Skip 'LOG("bla" fmt )' strings that typically appear as #defines. if fmt_re.match(quoted): if debug: errors_found.append(error_found(f, log.start(), 'Skipping define', log.group(0))) continue
Fix the following bug:
scripts/verify_log_statements.py:92:11: F821 Undefined name `ignored` | 90 | # hopefully eval broke because of some '## args' macro def 91 | if debug: 92 | ignored.append(error_found(f, log.start(), 'Ignoring', log.group(0))) | ^^^^^^^ F821 93 | continue |