sisoe24 / nukeserversocket

Missing class docstring PY-D0002
Documentation
Minor
3 months ago3 years old
Docstring missing for class HelpWidget
25    }
26
27
28class HelpWidget(QDialog):29    def __init__(self, parent=None):
30        super().__init__(parent)
31        self.setWindowTitle('NukeServerSocket Help')
Docstring missing for class NssSettingsUI
103        self._view.clear_output.setChecked(self._model.get('clear_output'))
104
105
106class NssSettingsUI:107    def __init__(self, settings: _NssSettings):
108        self.model = NssSettingsModel(settings)
109        self.view = NssSettingsView()
Docstring missing for class NssSettingsController
 61        self.setLayout(form_layout)
 62
 63
 64class NssSettingsController: 65    def __init__(self, view: NssSettingsView, model: NssSettingsModel):
 66        self._view = view
 67        self._model = model
Docstring missing for class NssSettingsView
 28        self.settings.set(key, value)
 29
 30
 31class NssSettingsView(QWidget): 32    def __init__(self, parent=None):
 33        super().__init__(parent)
 34        self.setMinimumSize(400, 200)
Docstring missing for class NssSettingsModel
 17    from .settings import _NssSettings
 18
 19
 20class NssSettingsModel: 21    def __init__(self, settings: _NssSettings):
 22        self.settings = settings
 23