Skip to content

Commit

Permalink
# pragma: no cover
Browse files Browse the repository at this point in the history
  • Loading branch information
GuyTeichman committed May 7, 2024
1 parent 17bacc6 commit 0b4e20f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rnalysis/gui/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -4363,7 +4363,7 @@ def about(self):
def cite(self):
self.cite_window.exec()

def input(self, message: str = ''):
def input(self, message: str = ''): # pragma: no cover
dialog = gui_widgets.PathInputDialog(message, parent=self)
self.external_windows['input'] = dialog
accepted = dialog.exec()
Expand Down
2 changes: 1 addition & 1 deletion rnalysis/gui/gui_windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -1113,7 +1113,7 @@ def result(self):
return [item.text() for item in self.list.get_sorted_selection()]


class ReportGenerationMessageBox(QtWidgets.QMessageBox):
class ReportGenerationMessageBox(QtWidgets.QMessageBox): # pragma: no cover
def __init__(self, parent=None):
super().__init__(parent=parent)
self.setWindowTitle("Report Generation")
Expand Down

0 comments on commit 0b4e20f

Please sign in to comment.