Skip to content

Commit

Permalink
format with black
Browse files Browse the repository at this point in the history
  • Loading branch information
mbelak-dtml committed Oct 5, 2023
1 parent c904a1c commit 921c1b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion edvart/report_sections/group_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ def overlaid_histograms(
if bins > 1000:
# Use Sturges' rule if number of bins is too large
bins = int(np.ceil(np.log2(bins) + 1))
bin_width = data_range / bins
bin_width = data_range / bins
else:
bin_width = data_range / bins
bin_config = go.histogram.XBins(
Expand Down

0 comments on commit 921c1b5

Please sign in to comment.