File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -588,7 +588,7 @@ class Pipeline(Redis[_StrType], Generic[_StrType]):
588
588
self ,
589
589
name ,
590
590
fields ,
591
- id : str = "*" ,
591
+ id : str | int | bytes | memoryview = "*" ,
592
592
maxlen = None ,
593
593
approximate : bool = True ,
594
594
nomkstream : bool = False ,
Original file line number Diff line number Diff line change @@ -864,7 +864,7 @@ class StreamCommands:
864
864
self ,
865
865
name ,
866
866
fields ,
867
- id : str = "*" ,
867
+ id : str | int | bytes | memoryview = "*" ,
868
868
maxlen = None ,
869
869
approximate : bool = True ,
870
870
nomkstream : bool = False ,
@@ -930,7 +930,7 @@ class AsyncStreamCommands:
930
930
self ,
931
931
name ,
932
932
fields ,
933
- id : str = "*" ,
933
+ id : str | int | bytes | memoryview = "*" ,
934
934
maxlen = None ,
935
935
approximate : bool = True ,
936
936
nomkstream : bool = False ,
You can’t perform that action at this time.
0 commit comments