Skip to content

Commit

Permalink
Merge pull request #66 from bento-platform/fixes/missing-summary
Browse files Browse the repository at this point in the history
fix: threshold is inclusive
  • Loading branch information
gsfk authored Jan 5, 2024
2 parents 429e231 + dbef9b7 commit b384e98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bento_beacon/utils/censorship.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def get_censorship_threshold():

def censored_count(count):
t = get_censorship_threshold()
if count < t:
if count <= t:
return 0
return count

Expand Down

0 comments on commit b384e98

Please sign in to comment.