Skip to content

Commit

Permalink
added kw to pass on to parent class.
Browse files Browse the repository at this point in the history
  • Loading branch information
wpfff committed Apr 8, 2020
1 parent a8ef07e commit a016daa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plottr/apps/autoplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,9 @@ class QCAutoPlotMainWindow(AutoPlotMainWindow):
def __init__(self, fc: Flowchart,
parent: Union[QtGui.QWidget, None] = None,
monitorInterval: Union[int, None] = None,
pathAndId: Union[Tuple[str, int], None] = None):
pathAndId: Union[Tuple[str, int], None] = None, **kw):

super().__init__(fc, parent, monitorInterval)
super().__init__(fc, parent, monitorInterval, **kw)

windowTitle = "Plottr | QCoDeS autoplot"
if pathAndId is not None:
Expand Down

0 comments on commit a016daa

Please sign in to comment.