Skip to content

Commit ec8e035

Browse files
1 parent c2b0b92 commit ec8e035

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎google/auth/_helpers.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ def _hash_sensitive_info(data: Union[dict, list]) -> Union[dict, list, str]:
312312
313313
"""
314314
if isinstance(data, dict):
315-
hashed_data : Dict[Any, Union[Optional[str], dict, list]] = {}
315+
hashed_data: Dict[Any, Union[Optional[str], dict, list]] = {}
316316
for key, value in data.items():
317317
if key in _SENSITIVE_FIELDS and not isinstance(value, (dict, list)):
318318
hashed_data[key] = _hash_value(value, key)

0 commit comments

Comments
 (0)