diff options
Diffstat (limited to 'testenv/tests/plugins/auth/__init__.py')
-rw-r--r-- | testenv/tests/plugins/auth/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testenv/tests/plugins/auth/__init__.py b/testenv/tests/plugins/auth/__init__.py index 7d0d0fb4..48bf16e5 100644 --- a/testenv/tests/plugins/auth/__init__.py +++ b/testenv/tests/plugins/auth/__init__.py @@ -36,7 +36,7 @@ from kvmd.plugins.auth import get_auth_service_class async def get_configured_auth_service(name: str, **kwargs: Any) -> AsyncGenerator[BaseAuthService, None]: service_class = get_auth_service_class(name) config = make_config(kwargs, service_class.get_plugin_options()) - service = service_class(**config._unpack()) # pylint: disable=protected-access + service = service_class(**config._unpack()) try: yield service finally: |