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 33da1ec commit c951afc
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 @@ -6,7 +6,7 @@
from PyQt5 import QtWidgets as qtw
from PyQt5 import QtCore as qtc

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


Expand All @@ -24,7 +24,7 @@ def __init__(self):
# Main UI code goes here

self.model = ModelSim()
self.view = View_sim()
self.view = ViewSim()
self.setLayout(qtw.QVBoxLayout())
self.layout().addWidget(self.view)

Expand Down
2 changes: 1 addition & 1 deletion sim/view_simulation_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from PyQt5 import QtCore as qtc


class View_sim(qtw.QWidget):
class ViewSim(qtw.QWidget):
submitted = qtc.pyqtSignal(object)
startsim = qtc.pyqtSignal()

Expand Down

0 comments on commit c951afc

Please sign in to comment.