From f879c3c596e0612a93ee8a66d15c551dce96ff6f Mon Sep 17 00:00:00 2001 From: Ronald Rahaman Date: Fri, 21 Aug 2020 11:03:57 -0500 Subject: [PATCH] Fix call to superclass constructor in `MeshPlotter --- scripts/openmc-plot-mesh-tally | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/openmc-plot-mesh-tally b/scripts/openmc-plot-mesh-tally index 6716b6609..fad2df418 100755 --- a/scripts/openmc-plot-mesh-tally +++ b/scripts/openmc-plot-mesh-tally @@ -26,7 +26,7 @@ _COMBOBOX_SELECTED = '<>' class MeshPlotter(tk.Frame): def __init__(self, parent, filename): - super().__init__(self, parent) + super().__init__(parent) self.labels = { 'Cell': 'Cell:',