Mon, 22 Apr 2024 18:23:20 +0200
Changed the source code and the source code documentation to improve the indication of unused method/function arguments.
# -*- coding: utf-8 -*- # Copyright (c) 2014 - 2024 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing a dialog to enter options used to start a project in the VCS. """ from PyQt6.QtWidgets import QDialog from .Ui_GitOptionsDialog import Ui_GitOptionsDialog class GitOptionsDialog(QDialog, Ui_GitOptionsDialog): """ Class implementing a dialog to enter options used to start a project in the repository. """ def __init__(self, parent=None): """ Constructor @param parent parent widget @type QWidget """ super().__init__(parent) self.setupUi(self) msh = self.minimumSizeHint() self.resize(max(self.width(), msh.width()), msh.height()) def getData(self): """ Public slot to retrieve the data entered into the dialog. @return a dictionary containing the data entered @rtype dict """ vcsdatadict = { "message": self.vcsLogEdit.text(), } return vcsdatadict