Skip to content

Commit

Permalink
remove debug output that lead to a failed test
Browse files Browse the repository at this point in the history
  • Loading branch information
m-weigand committed Nov 14, 2019
1 parent f1e21f2 commit 0d31602
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/reda/plotters/histograms.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ def plot_histograms(ertobj, keys, **kwargs):
subdata = subdata[np.isfinite(subdata)]

nr_of_bins = kwargs.get('nr_of_bins', _get_nr_bins(subdata.size))
print('nr of bins', nr_of_bins)

subdata_log10_with_nan = np.log10(subdata[subdata > 0])
subdata_log10 = subdata_log10_with_nan[~np.isnan(
Expand Down

0 comments on commit 0d31602

Please sign in to comment.