mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-29 06:35:48 -04:00
Merge pull request #1644 from RonRahaman/patch-1
Fix call to superclass constructor in MeshPlotter
This commit is contained in:
commit
62b9f6a9b6
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