Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
exclude: ^python/tests/__snapshots__/
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.7.1
rev: v0.7.3
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
Expand Down
4 changes: 2 additions & 2 deletions python/egglog/bindings.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ class FunctionDecl:
schema: Schema,
default: _Expr | None = None,
merge: _Expr | None = None,
merge_action: list[_Action] = [], # noqa: B006
merge_action: list[_Action] = [],
cost: int | None = None,
unextractable: bool = False,
ignore_viz: bool = False,
Expand Down Expand Up @@ -298,7 +298,7 @@ class Rewrite:
rhs: _Expr
conditions: list[_Fact]

def __init__(self, span: Span, lhs: _Expr, rhs: _Expr, conditions: list[_Fact] = []) -> None: ... # noqa: B006
def __init__(self, span: Span, lhs: _Expr, rhs: _Expr, conditions: list[_Fact] = []) -> None: ...

@final
class RunConfig:
Expand Down