Skip to content

Commit 625c512

Browse files
committed
fix: convert type hint
1 parent 5c8ec07 commit 625c512

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

litestar_saq/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
T = TypeVar("T")
2626
TaskQueue = Union[Queue, SaqQueue]
27-
DumpType = SaqDumpType | Callable[[Dict], bytes]
27+
DumpType = Union[SaqDumpType, Callable[[Dict], bytes]]
2828

2929

3030
def serializer(value: Any) -> str:

0 commit comments

Comments
 (0)