Skip to content

Commit

Permalink
mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Sep 7, 2024
1 parent 55d5d6c commit 3c23349
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py-polars/tests/unit/io/test_delta.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,8 +472,8 @@ def test_write_delta_with_merge(tmp_path: Path) -> None:
)

assert isinstance(merger, TableMerger)
assert merger.source_alias == "s"
assert merger.target_alias == "t"
assert merger.source_alias == "s" # type: ignore[attr-defined]
assert merger.target_alias == "t" # type: ignore[attr-defined]

merger.when_matched_delete(predicate="t.a > 2").execute()

Expand Down

0 comments on commit 3c23349

Please sign in to comment.