def __init__(self, problems, *args):
super(ProtocolWarningBox, self).__init__(*args)
self.setIcon(QMessageBox.Warning)
self.setWindowTitle("Insufficient protocol")
self.setText("The provided protocol is insufficient for this model.")
self.setInformativeText("The reported problems are: \n{}".format('\n'.join(' - ' + str(p) for p in problems)))
self._in_resize = False
评论列表
文章目录