Skip to content

Commit baebb61

Browse files
Copilotmkmkme
andauthored
Fix pack_command type annotation to accept variable-length tuples (#55)
* Initial plan * Fix pack_command type annotation to accept variable-length tuples Co-authored-by: mkmkme <4062234+mkmkme@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: mkmkme <4062234+mkmkme@users.noreply.github.com>
1 parent 5043f36 commit baebb61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libvalkey/libvalkey.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ class Reader:
2626
self, encoding: Optional[str] = ..., errors: Optional[str] = ...
2727
) -> None: ...
2828

29-
def pack_command(cmd: Tuple[str | int | float | bytes | memoryview]): ...
29+
def pack_command(cmd: Tuple[str | int | float | bytes | memoryview, ...]) -> bytes: ...

0 commit comments

Comments
 (0)