Skip to content

Commit

Permalink
[Snorkell.ai]: Documentation for sovTubesPanelWidget.py
Browse files Browse the repository at this point in the history
  • Loading branch information
penify-dev[bot] authored May 3, 2024
1 parent a00e5ad commit e1f7ed0
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/sovTubesPanelWidget.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@

class PreProcessPanelWidget(QWidget, Ui_PreProcessPanelWidget):
def __init__(self, gui, state, parent=None):
""" Initialize the class with the provided GUI, state, and optional parent.
Args:
gui: The GUI object.
state: The state object.
parent: Optional parent widget.
"""

super().__init__(parent)
self.setupUi(self)

Expand All @@ -15,4 +23,9 @@ def __init__(self, gui, state, parent=None):
self.preprocHighResIsoButton.clicked.connect(self.make_high_res_iso)

def make_high_res_iso(self):
""" Print 'click'.
This function prints 'click' when called.
"""

print('click')

0 comments on commit e1f7ed0

Please sign in to comment.