ignored protected-access for _unpack()

This commit is contained in:
Devaev Maxim
2020-09-30 07:25:52 +03:00
parent 3f9c32e9fc
commit 630593492a
7 changed files with 7 additions and 8 deletions

View File

@@ -43,7 +43,7 @@ from kvmd.plugins.auth import get_auth_service_class
def _make_service_kwargs(path: str) -> Dict:
cls = get_auth_service_class("htpasswd")
scheme = cls.get_plugin_options()
return make_config({"file": path}, scheme)._unpack() # pylint: disable=protected-access
return make_config({"file": path}, scheme)._unpack()
@contextlib.asynccontextmanager