Skip to content

Commit

Permalink
Fix typo in log output
Browse files Browse the repository at this point in the history
  • Loading branch information
jamie256 committed Apr 7, 2022
1 parent 29a6cf9 commit 39e68af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/whylogs/core/summaryconverters.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def _calculate_bins(end: float, start: float, n: int, avg_per_bucket: float, max
new_buckets = math.floor((end - start) / min_interval)
logger.warning(
f"A bin width of {width} won't work with values in range of [{start}, {end}] "
f"because numbers closer to eachother than {int(min_interval)} might not be distinct "
f"because numbers closer to each other than {int(min_interval)} might not be distinct "
"when passed as float32: avoiding bin edge collisions by resizing from: "
f"{n_buckets} to: {new_buckets} histogram buckets in summary."
)
Expand Down

0 comments on commit 39e68af

Please sign in to comment.