diff options
author | Thomas Lively <tlively@google.com> | 2024-12-20 12:10:18 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-20 12:10:18 -0800 |
commit | 43da2c7ff5069a4cb5733b4efcdbd573977e3c46 (patch) | |
tree | 0a7a8505fb2cc9f060bb77a37845a99a5ad47b74 /scripts/update_lit_checks.py | |
parent | ac7cae5ba45f2995b045927ed1d7c03f1fded227 (diff) | |
download | binaryen-43da2c7ff5069a4cb5733b4efcdbd573977e3c46.tar.gz binaryen-43da2c7ff5069a4cb5733b4efcdbd573977e3c46.tar.bz2 binaryen-43da2c7ff5069a4cb5733b4efcdbd573977e3c46.zip |
Update flake8 and fix errors (#7172)
The flake8 we were running on CI was too old and began giving spurious
errors about the uninterpreted contents of f-strings. Update to the
latest flake8 and fix all the new errors, including the previously
incorrect comment syntax in the .flake8 file.
Also remove scripts/storage.py, since it didn't seem to be used for
anything we currently need.
Diffstat (limited to 'scripts/update_lit_checks.py')
-rwxr-xr-x | scripts/update_lit_checks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/update_lit_checks.py b/scripts/update_lit_checks.py index 345ff39d0..b6bb213a8 100755 --- a/scripts/update_lit_checks.py +++ b/scripts/update_lit_checks.py @@ -88,7 +88,7 @@ def itertests(args): def find_run_lines(test, lines): - line_matches = [RUN_LINE_RE.match(l) for l in lines] + line_matches = [RUN_LINE_RE.match(line) for line in lines] matches = [match.group(1) for match in line_matches if match] if not matches: warn(f'No RUN lines found in {test}. Ignoring.') |