🚨 auto fix by pre-commit hooks
Some checks failed
TypeCheck / TypeCheck (push) Has been cancelled

This commit is contained in:
pre-commit-ci[bot]
2025-03-17 20:07:23 +00:00
parent 34b8671845
commit 559e6c11a3
3 changed files with 5 additions and 5 deletions

View File

@@ -156,7 +156,7 @@ class SkinManager:
class Skin(ABC):
def __new__(cls, *args: Any, **kwargs: Any) -> Self: # noqa: ANN401, ARG003
def __new__(cls, *args: Any, **kwargs: Any) -> Self: # noqa: ANN401
instance = super().__new__(cls)
SkinManager.register(instance)
return instance