From 487f01b0f8f030d3c29a212a64b2ad5dfa7d894c Mon Sep 17 00:00:00 2001 From: markus Date: Fri, 22 Jan 2021 14:24:29 +0100 Subject: [PATCH] remove plt.show() from logscale_hist --- cara/montecarlo.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cara/montecarlo.py b/cara/montecarlo.py index 7cf5feea..13f88df8 100644 --- a/cara/montecarlo.py +++ b/cara/montecarlo.py @@ -243,7 +243,6 @@ def logscale_hist(x: typing.Iterable, bins: int) -> None: logscale_bins = np.logspace(np.log10(bins[0]), np.log10(bins[-1]), len(bins)) plt.hist(x, bins=logscale_bins) plt.xscale('log') - plt.show() def print_qr_info(qr_values: np.ndarray) -> None: