Added github integration
This commit is contained in:
10
buffteks/lib/python3.11/site-packages/strenum/mixins.pyi
Normal file
10
buffteks/lib/python3.11/site-packages/strenum/mixins.pyi
Normal file
@@ -0,0 +1,10 @@
|
||||
from typing import Tuple, Any
|
||||
|
||||
class Comparable:
|
||||
def __eq__(self, other: Any) -> bool: ...
|
||||
def __ne__(self, other: Any) -> bool: ...
|
||||
def __lt__(self, other: Any) -> bool: ...
|
||||
def __le__(self, other: Any) -> bool: ...
|
||||
def __gt__(self, other: Any) -> bool: ...
|
||||
def __ge__(self, other: Any) -> bool: ...
|
||||
def _cmp_values(self, other: Any) -> Tuple[str, str]: ...
|
||||
Reference in New Issue
Block a user