Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
laggykiller committed Mar 5, 2024
1 parent ddf2c76 commit 5b14283
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion av/enum.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ class EnumItem:

def __int__(self) -> int: ...
def __hash__(self) -> int: ...
def __reduce__(self) -> tuple[Callable[[str, str, str], EnumItem], tuple[str, str, str]]: ...
def __reduce__(
self,
) -> tuple[Callable[[str, str, str], EnumItem], tuple[str, str, str]]: ...
def __eq__(self, other: object) -> bool: ...
def __ne__(self, other: object) -> bool: ...

Expand Down

0 comments on commit 5b14283

Please sign in to comment.