Merge pull request #1644 from RonRahaman/patch-1

Fix call to superclass constructor in MeshPlotter
This commit is contained in:
Patrick Shriwise 2020-08-21 13:10:45 -05:00 committed by GitHub
commit 62b9f6a9b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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:',