Skip to content

Commit

Permalink
Add temp placeholder for event in conduit types.
Browse files Browse the repository at this point in the history
  • Loading branch information
EvieePy committed Apr 19, 2024
1 parent d533995 commit 994c9cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions twitchio/types_/conduits.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
SOFTWARE.
"""

from typing import Literal, TypedDict
from typing import Any, Literal, TypedDict

from typing_extensions import NotRequired

Expand Down Expand Up @@ -120,7 +120,7 @@ class NotificationSubscription(TypedDict):

class NotificationPayload(TypedDict):
subscription: NotificationSubscription
event: ...
event: dict[str, Any]


class NotificationMessage(TypedDict):
Expand Down Expand Up @@ -181,4 +181,4 @@ class RevocationPayload(TypedDict):

class RevocationMessage(TypedDict):
metadata: RevocationMetaData
payload: ReconnectPayload
payload: RevocationPayload

0 comments on commit 994c9cb

Please sign in to comment.