chore: ruff fmt

This commit is contained in:
Erik Wrede 2024-09-29 13:28:43 +02:00
parent 319d569ad8
commit d6f0eb0fff
No known key found for this signature in database
GPG Key ID: 2180166EDF80A9DA

View File

@ -6,6 +6,4 @@ def test_warn_deprecation(mocker):
mocker.patch.object(deprecated, "warn") mocker.patch.object(deprecated, "warn")
warn_deprecation("OH!") warn_deprecation("OH!")
deprecated.warn.assert_called_with( deprecated.warn.assert_called_with("OH!", stacklevel=2, category=DeprecationWarning)
"OH!", stacklevel=2, category=DeprecationWarning
)