From c9e54a58afba564fa0eef222c5f2b1f1d33d9f8c Mon Sep 17 00:00:00 2001 From: Marcel Wilson Date: Thu, 1 Aug 2024 11:52:57 -0500 Subject: [PATCH] latest version of ruff no longer triggers PLR0913 on `settings_customise_sources` which causes it to complain about RUF100 (unused noqa) while pylint does not. --- screenpy/configuration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/screenpy/configuration.py b/screenpy/configuration.py index 8a738b1..368cdaa 100644 --- a/screenpy/configuration.py +++ b/screenpy/configuration.py @@ -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,