Skip to content

Commit

Permalink
Reformat with black
Browse files Browse the repository at this point in the history
  • Loading branch information
klausweiss committed Jan 29, 2025
1 parent 55cb03b commit 4781cc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def _strip_invisible(string: str) -> str:
The need for the former was born with an ugly hack that we use
to trick mypyc.
"""
zero_width_space = "\u200B"
zero_width_space = "\u200b"
return string.strip().replace(zero_width_space, "")

return _strip_invisible
2 changes: 1 addition & 1 deletion typing_protocol_intersection/mypy_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class UniqueFullname(str):
plugin.
"""

ZERO_WIDTH_SPACE = "\u200B"
ZERO_WIDTH_SPACE = "\u200b"
instance_counter: typing.ClassVar[int] = 0

def __new__(cls, base_fullname: str) -> "UniqueFullname":
Expand Down

0 comments on commit 4781cc3

Please sign in to comment.