Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-congo committed Apr 19, 2024
1 parent be030a3 commit 811e78e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/python/glide/async_commands/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -1618,7 +1618,9 @@ def zremrangebylex(
max_lex.value["lex_arg"] if type(max_lex) == InfBound else max_lex.value
)

return self.append_command(RequestType.ZRemRangeByLex, [key, min_lex_str, max_lex_str])
return self.append_command(
RequestType.ZRemRangeByLex, [key, min_lex_str, max_lex_str]
)

def zlexcount(
self: TTransaction,
Expand Down

0 comments on commit 811e78e

Please sign in to comment.