Skip to content

Commit

Permalink
correct typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zxdavb committed Jan 19, 2025
1 parent 0513314 commit af0b981
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/evohome/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def obfuscate(value: bool | int | str) -> bool | int | str | None:
if not isinstance(value, str):
raise TypeError(f"obfuscate() expects bool | int | str, got {type(value)}")
if REGEX_EMAIL_ADDRESS.match(value):
return "******@obfsfucated.com"
return "******@obfuscated.com"
return "********"


Expand Down

0 comments on commit af0b981

Please sign in to comment.