Skip to content

Commit

Permalink
fix type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
CM000n committed Nov 27, 2023
1 parent 1487d7e commit 7f5283e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mytoyota/utils/logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ def censor_value(value: Any, key: str, to_censor: set) -> Any:
return value


def censor_all(dictionary: dict[str, Any], to_censor: Optional[set] = None) -> dict[str, Any]:
def censor_all(
dictionary: dict[str, Any], to_censor: Optional[set] = None
) -> dict[str, Any]:
if to_censor is None:
to_censor = {
"vin",
Expand Down

0 comments on commit 7f5283e

Please sign in to comment.