Skip to content

Commit

Permalink
linter fixes #2
Browse files Browse the repository at this point in the history
  • Loading branch information
grefrathc committed Jun 28, 2024
1 parent 509c07d commit 440a89f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/safeds/data/tabular/containers/_table/test_join.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@
),
],
)
def test_join(table_left, table_right, left_names, right_names, mode, table_expected)-> None:
def test_join(table_left: Table, table_right: Table, left_names: str | list[str], right_names: str | list[str], mode: str, table_expected: Table)-> None:
assert table_left.join(table_right, left_names, right_names, mode=mode) == table_expected

0 comments on commit 440a89f

Please sign in to comment.