Skip to content

Commit 0da173a

Browse files
committed
coderabbit review
1 parent 9e179aa commit 0da173a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,6 @@ jobs:
467467
- name: Check for redundant test patches
468468
run: python scripts/check_redundant_patches.py
469469

470-
- uses: actions/checkout@v6.0.2
471470
- uses: dtolnay/rust-toolchain@stable
472471
with:
473472
components: clippy

scripts/check_redundant_patches.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def main():
1818
try:
1919
tree = ast.parse(contents)
2020
except SyntaxError:
21-
pass
21+
continue
2222

2323
for node in ast.walk(tree):
2424
if not isinstance(node, (ast.FunctionDef, ast.AsyncFunctionDef)):

0 commit comments

Comments
 (0)