Skip to content

Commit

Permalink
latest version of ruff no longer triggers PLR0913 on `settings_custom…
Browse files Browse the repository at this point in the history
…ise_sources` which causes it to complain about RUF100 (unused noqa) while pylint does not.
  • Loading branch information
bandophahita committed Aug 1, 2024
1 parent 64b11b5 commit c9e54a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion screenpy/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class ScreenPySettings(BaseSettings):
"""

@classmethod
def settings_customise_sources( # noqa: PLR0913
def settings_customise_sources( # noqa: PLR0913, RUF100
cls,
settings_cls: type[BaseSettings],
init_settings: PydanticBaseSettingsSource,
Expand Down

0 comments on commit c9e54a5

Please sign in to comment.