Skip to content

Commit

Permalink
Fix black error
Browse files Browse the repository at this point in the history
Apparently newer black prefers the ellipsis on the same line.
  • Loading branch information
dbnicholson committed Apr 25, 2024
1 parent 7dacf10 commit a70f57a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/lib/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,7 @@ def __ne__(self, other):


class _SupportsComparison(t.Protocol):
def __lt__(self, other: t.Any) -> bool:
...
def __lt__(self, other: t.Any) -> bool: ...


_VersionedObj = t.TypeVar("_VersionedObj")
Expand Down

0 comments on commit a70f57a

Please sign in to comment.