Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rudolfix committed May 12, 2024
1 parent 9687d14 commit 15976ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/common/schema/test_merges.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def test_none_resets_on_merge_column() -> None:

# leaves props with unknown defaults (assumes None is default)
col_a = utils.merge_column(
col_a={"name": "col1", "x-prop": "prop"}, col_b={"name": "col1", "x-prop": None}
col_a={"name": "col1", "x-prop": "prop"}, col_b={"name": "col1", "x-prop": None} # type: ignore[typeddict-unknown-key]
)
assert col_a == {"name": "col1", "x-prop": None}

Expand Down

0 comments on commit 15976ff

Please sign in to comment.