Skip to content

Commit

Permalink
fix: incorrect typehints
Browse files Browse the repository at this point in the history
  • Loading branch information
anand2312 committed Oct 25, 2021
1 parent 592a563 commit e999d48
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion realtime_py/message.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from dataclasses import dataclass
from enum import Enum
from typing import Any


@dataclass
Expand All @@ -10,7 +11,7 @@ class Message:

event: str
payload: dict
ref: any
ref: Any
topic: str

def __hash__(self):
Expand Down

0 comments on commit e999d48

Please sign in to comment.