Fixed linting error

This commit is contained in:
Philipp Thumfart 2026-03-02 17:15:40 +01:00
parent 8c29d9a44d
commit 993aed7b1d

View file

@ -110,7 +110,7 @@ class Config:
return result
def __getattr__(self, key):
if key in ("_backend",):
if key == "_backend":
return super().__getattribute__(key)
try:
if len(settings.CONFIG[key]) not in (2, 3):