Update packaging==21.3

This commit is contained in:
JonnyWong16 2021-11-28 13:58:52 -08:00
parent 0ec2d70e4b
commit f52d985f8c
No known key found for this signature in database
GPG key ID: B1F1F9807184697A
5 changed files with 17 additions and 46 deletions

View file

@ -19,9 +19,6 @@ class InfinityType:
def __eq__(self, other: object) -> bool:
return isinstance(other, self.__class__)
def __ne__(self, other: object) -> bool:
return not isinstance(other, self.__class__)
def __gt__(self, other: object) -> bool:
return True
@ -51,9 +48,6 @@ class NegativeInfinityType:
def __eq__(self, other: object) -> bool:
return isinstance(other, self.__class__)
def __ne__(self, other: object) -> bool:
return not isinstance(other, self.__class__)
def __gt__(self, other: object) -> bool:
return False