Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
coderabbit review
  • Loading branch information
ShaharNaveh committed Feb 15, 2026
commit 0da173a88437440b39a8759b71dfd1d1d1f9284a
1 change: 0 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,6 @@ jobs:
- name: Check for redundant test patches
run: python scripts/check_redundant_patches.py

- uses: actions/checkout@v6.0.2
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
Expand Down
2 changes: 1 addition & 1 deletion scripts/check_redundant_patches.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def main():
try:
tree = ast.parse(contents)
except SyntaxError:
pass
continue

for node in ast.walk(tree):
Comment thread
coderabbitai[bot] marked this conversation as resolved.
if not isinstance(node, (ast.FunctionDef, ast.AsyncFunctionDef)):
Expand Down
Loading