Skip to content

Commit

Permalink
fix: flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
cunla committed Jun 17, 2023
1 parent a2ef96c commit 7bf6064
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fakeredis/_zset.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def irange_lex(self, start, stop, inclusive=(True, True), reverse=False):
inclusive=inclusive, reverse=reverse)
return (item[1] for item in it)

def irange_score(self, start: Tuple[Any, bytes], stop: Tuple[Any, bytes], reverse:bool=False):
def irange_score(self, start: Tuple[Any, bytes], stop: Tuple[Any, bytes], reverse: bool = False):
return self._byscore.irange(start, stop, reverse=reverse)

def rank(self, member):
Expand Down

0 comments on commit 7bf6064

Please sign in to comment.