Skip to content

Commit

Permalink
Remove return stmt
Browse files Browse the repository at this point in the history
  • Loading branch information
laraabastoss committed Jun 21, 2024
1 parent d8f6c0e commit ff66216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion river/sketch/hyper_log_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def update(self, x: typing.Hashable):
j = hash_val & (self.m - 1)
w = hash_val >> self.b
self.registers[j] = max(self.registers[j], self.left_most_one(w))
return None


def count(self) -> int:
"""
Expand Down

0 comments on commit ff66216

Please sign in to comment.