mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 13:45:36 -04:00
Fix call to superclass constructor in `MeshPlotter
This commit is contained in:
parent
baaae16bb4
commit
f879c3c596
1 changed files with 1 additions and 1 deletions
|
|
@ -26,7 +26,7 @@ _COMBOBOX_SELECTED = '<<ComboboxSelected>>'
|
|||
|
||||
class MeshPlotter(tk.Frame):
|
||||
def __init__(self, parent, filename):
|
||||
super().__init__(self, parent)
|
||||
super().__init__(parent)
|
||||
|
||||
self.labels = {
|
||||
'Cell': 'Cell:',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue