From c093b58614c28c69982fc75f8f552222642bc21a Mon Sep 17 00:00:00 2001 From: Harmon Date: Mon, 22 Feb 2021 21:20:35 -0600 Subject: [PATCH] Rename EqualityComparable to EqualityComparableID --- tweepy/mixins.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tweepy/mixins.py b/tweepy/mixins.py index c5d9788..44fb030 100644 --- a/tweepy/mixins.py +++ b/tweepy/mixins.py @@ -2,7 +2,7 @@ # Copyright 2009-2021 Joshua Roesslein # See LICENSE for details. -class EqualityComparable: +class EqualityComparableID: __slots__ = () def __eq__(self, other): @@ -12,7 +12,7 @@ class EqualityComparable: return NotImplemented -class Hashable(EqualityComparable): +class Hashable(EqualityComparableID): __slots__ = () def __hash__(self): -- 2.25.1