From 52d15cbb5764b926e8b7e7e870d67599e76286a8 Mon Sep 17 00:00:00 2001 From: Lila Date: Tue, 3 Sep 2024 14:31:42 -0400 Subject: [PATCH] Add ignore[import-not-found] to fix awx_plugins.credentials.tss error on line 146 --- tests/credential_plugins_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/credential_plugins_test.py b/tests/credential_plugins_test.py index 8806726c83..62d981708e 100644 --- a/tests/credential_plugins_test.py +++ b/tests/credential_plugins_test.py @@ -143,7 +143,7 @@ def test_dsv_import(self) -> None: assert SecretsVault.__module__ == 'delinea.secrets.vault' def test_tss_import(self) -> None: - from awx_plugins.credentials.tss import DomainPasswordGrantAuthorizer, PasswordGrantAuthorizer, SecretServer, ServerSecret # noqa + from awx_plugins.credentials.tss import DomainPasswordGrantAuthorizer, PasswordGrantAuthorizer, SecretServer, ServerSecret #type: ignore[import-not-found] # noqa for cls in ( DomainPasswordGrantAuthorizer,