Skip to content

Commit

Permalink
Merge pull request valkey-io#444 from barshaul/py_fix
Browse files Browse the repository at this point in the history
Fix Python transaction example
  • Loading branch information
shachlanAmazon authored Sep 18, 2023
2 parents 700c62e + 7f749b8 commit 4bd9463
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/python/pybushka/async_commands/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,9 @@ def set(

def custom_command(self, command_args: List[str]):
"""Executes a single command, without checking inputs.
@example - Return a list of all pub/sub clients:
@example - Append a command to list of all pub/sub clients:
connection.customCommand(["CLIENT", "LIST","TYPE", "PUBSUB"])
transaction.customCommand(["CLIENT", "LIST","TYPE", "PUBSUB"])
Args:
command_args (List[str]): List of strings of the command's arguments.
Every part of the command, including the command name and subcommands, should be added as a separate value in args.
Expand Down

0 comments on commit 4bd9463

Please sign in to comment.