We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 53b2ca1 + 0e73c47 commit c0c9095Copy full SHA for c0c9095
events_protocol/__init__.py
@@ -1,4 +1,4 @@
1
-__version__ = "0.2.1" # pragma: no cover
+__version__ = "0.2.2" # pragma: no cover
2
3
from .core.builder import EventBuilder
4
from .client import EventClient
events_protocol/core/model/user.py
@@ -8,7 +8,7 @@ class User:
8
user_type: Optional[str]
9
10
def __hash__(self):
11
- return hash(f'{self.user_id},{self.user_type}')
+ return hash(f"{self.user_id},{self.user_type}")
12
13
def __eq__(self, other):
14
return self.__hash__() == other.__hash__()
0 commit comments