@@ -432,9 +432,6 @@ def to_dict(self) -> dict[str, Any]:
432
432
def __eq__ (self , other : Any ) -> bool :
433
433
return isinstance (other , Game ) and other .name == self .name
434
434
435
- def __ne__ (self , other : Any ) -> bool :
436
- return not self .__eq__ (other )
437
-
438
435
def __hash__ (self ) -> int :
439
436
return hash (self .name )
440
437
@@ -542,9 +539,6 @@ def __eq__(self, other: Any) -> bool:
542
539
and other .url == self .url
543
540
)
544
541
545
- def __ne__ (self , other : Any ) -> bool :
546
- return not self .__eq__ (other )
547
-
548
542
def __hash__ (self ) -> int :
549
543
return hash (self .name )
550
544
@@ -654,9 +648,6 @@ def __eq__(self, other: Any) -> bool:
654
648
and other .start == self .start
655
649
)
656
650
657
- def __ne__ (self , other : Any ) -> bool :
658
- return not self .__eq__ (other )
659
-
660
651
def __hash__ (self ) -> int :
661
652
return hash (self ._session_id )
662
653
@@ -829,9 +820,6 @@ def __eq__(self, other: Any) -> bool:
829
820
and other .emoji == self .emoji
830
821
)
831
822
832
- def __ne__ (self , other : Any ) -> bool :
833
- return not self .__eq__ (other )
834
-
835
823
def __hash__ (self ) -> int :
836
824
return hash ((self .name , str (self .emoji )))
837
825
0 commit comments