Skip to content

Commit

Permalink
class name update
Browse files Browse the repository at this point in the history
  • Loading branch information
SasLeo committed Jun 11, 2021
1 parent a82e448 commit 52b9a57
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions modules/module_one_a_simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from PyQt5 import QtCore as qtc

from sim.view_simulation_module import View_sim
from sim.model_simulation_module import Model_sim
from sim.model_simulation_module import ModelSim


class MainWindowSimulation(qtw.QWidget):
Expand All @@ -23,7 +23,7 @@ def __init__(self):
super().__init__()
# Main UI code goes here

self.model = Model_sim()
self.model = ModelSim()
self.view = View_sim()
self.setLayout(qtw.QVBoxLayout())
self.layout().addWidget(self.view)
Expand Down
2 changes: 1 addition & 1 deletion sim/model_simulation_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from pythonr.Python_to_R import PythonToR


class Model_sim(qtc.QObject):
class ModelSim(qtc.QObject):
error = qtc.pyqtSignal(str)
finished = qtc.pyqtSignal()

Expand Down

0 comments on commit 52b9a57

Please sign in to comment.