Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/datastar_py/sse.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from typing import Literal, Protocol, TypeAlias, overload, runtime_checkable

import datastar_py.consts as consts
from datastar_py.attributes import _escape
from datastar_py.attributes import _escape, SignalValue

SSE_HEADERS: dict[str, str] = {
"Cache-Control": "no-cache",
Expand Down Expand Up @@ -136,7 +136,7 @@ def remove_elements(
@classmethod
def patch_signals(
cls,
signals: dict | str,
signals: dict[str, SignalValue] | str,
event_id: str | None = None,
only_if_missing: bool | None = None,
retry_duration: int | None = None,
Expand Down
Loading