Fix call to superclass constructor in `MeshPlotter

This commit is contained in:
Ronald Rahaman 2020-08-21 11:03:57 -05:00 committed by GitHub
parent baaae16bb4
commit f879c3c596
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:',