Skip to content
Snippets Groups Projects
Commit 890bfd6a authored by Petter Källström's avatar Petter Källström
Browse files

cleaning up arguments

parent e77b3d1f
No related branches found
No related tags found
1 merge request!203Simulation window
...@@ -64,16 +64,16 @@ class PlotWindow(QDialog): ...@@ -64,16 +64,16 @@ class PlotWindow(QDialog):
def __init__( def __init__(
self, self,
sim_result, sim_result,
sfg_name="{sfg_name}", # sfg_name="{sfg_name}",
window=None, # window=None,
logger=print, logger=print,
parent=None, parent=None,
width=5, # width=5,
height=4, # height=4,
dpi=100, # dpi=100,
): ):
super().__init__() super().__init__(parent=parent)
self._window = window # self._window = window
self.setWindowFlags( self.setWindowFlags(
Qt.WindowTitleHint Qt.WindowTitleHint
| Qt.WindowCloseButtonHint | Qt.WindowCloseButtonHint
...@@ -233,7 +233,8 @@ if __name__ == "__main__": ...@@ -233,7 +233,8 @@ if __name__ == "__main__":
't1': [0, 1, 0, 0], 't1': [0, 1, 0, 0],
} }
win = PlotWindow( win = PlotWindow(
window=None, sim_result=sim_res, sfg_name="hej", logger=print # window=None, sim_result=sim_res, sfg_name="hej", logger=print
sim_result=sim_res,
) )
win.exec_() win.exec_()
# win.show() # win.show()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment