Skip to content

Commit 13684d9

Browse files
author
deeleeramone
committed
mypy
1 parent 258be7b commit 13684d9

1 file changed

Lines changed: 6 additions & 8 deletions

File tree

pywry/pywry/config.py

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,12 @@ def _deep_merge(base: dict[str, Any], override: dict[str, Any]) -> dict[str, Any
104104

105105

106106
# Field names that contain sensitive data and must be redacted in output.
107-
_SENSITIVE_FIELDS: frozenset[str] = frozenset(
108-
{
109-
"client_secret",
110-
"ssl_keyfile_password",
111-
"internal_api_token",
112-
"redis_url",
113-
}
114-
)
107+
_SENSITIVE_FIELDS: set[str] = {
108+
"client_secret",
109+
"ssl_keyfile_password",
110+
"internal_api_token",
111+
"redis_url",
112+
}
115113

116114
_REDACTED = "********"
117115

0 commit comments

Comments
 (0)