Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-beedie committed Mar 2, 2024
1 parent f5e1d1a commit 96edb8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/tests/unit/utils/test_deprecation.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def hello(oof: str, rab: str, ham: str) -> None: ...

class Foo: # noqa: D101
@deprecate_nonkeyword_arguments(allowed_args=["self", "baz"], version="0.1.2")
def bar( # noqa: D102
def bar(
self, baz: str, ham: str | None = None, foobar: str | None = None
) -> None: ...

Expand Down

0 comments on commit 96edb8d

Please sign in to comment.