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 18, 2024
1 parent 36044a4 commit 498f461
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 zscore(self: TTransaction, key: str, member: str) -> TTransaction:
"""
Expand Down

0 comments on commit 498f461

Please sign in to comment.