We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab8a32e commit 3add9a1Copy full SHA for 3add9a1
‎tests/managed_credential_plugins_test.py‎
@@ -1,6 +1,4 @@
1
"""Individual ManagedCredentialType plugin tests."""
2
-# FIXME: ManagedCredentialType type not found.
3
-# mypy: allow-any-unimported
4
import configparser
5
import json
6
from dataclasses import dataclass
@@ -507,7 +505,8 @@ def check(
507
505
),
508
506
)
509
# pylint: disable-next=too-many-arguments, too-many-positional-arguments
510
-def test_credential_plugins( # noqa: WPS211
+# FIXME: Type ignore below due to ManagedCredentialType type not found.
+def test_credential_plugins( # type: ignore[no-any-unimported] # noqa: WPS211
511
cred_type: ManagedCredentialType,
512
inputs: CredentialInputType,
513
expected_env: dict[str, str],
0 commit comments