Commit 3438f11d authored by Jan Kiene's avatar Jan Kiene
Browse files

use concatenate instead of concat

parent 08d8466a
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -61,7 +61,7 @@ def create_histograms(

                counts, _ = np.histogram(df_hist[measure_in_df], bins)

                data = np.concat([counts, [0], [n_errors], [0]])
                data = np.concatenate([counts, [0], [n_errors], [0]])
                ax.bar(
                    x,
                    data,