From 713e764817b7bf8c3bb4911c238f07780f3a0532 Mon Sep 17 00:00:00 2001 From: Sunil Shetye Date: Tue, 25 Jun 2019 15:24:11 +0530 Subject: pep8: break long lines --- src/frontEnd/Application.py | 78 ++++++++++++--------------------------------- 1 file changed, 20 insertions(+), 58 deletions(-) (limited to 'src/frontEnd/Application.py') diff --git a/src/frontEnd/Application.py b/src/frontEnd/Application.py index c0dddf51..ef8a4a7d 100755 --- a/src/frontEnd/Application.py +++ b/src/frontEnd/Application.py @@ -84,7 +84,8 @@ class Application(QtGui.QMainWindow): self) self.newproj.setShortcut('Ctrl+N') self.newproj.triggered.connect(self.new_project) - # self.newproj.connect(self.newproj,QtCore.SIGNAL('triggered()'),self,QtCore.SLOT(self.new_project())) + # self.newproj.connect(self.newproj, QtCore.SIGNAL('triggered()'), + # self, QtCore.SLOT(self.new_project())) self.openproj = QtGui.QAction( QtGui.QIcon('../../images/openProject.png'), @@ -352,16 +353,18 @@ class Application(QtGui.QMainWindow): self.obj_Mainview.obj_dockarea.plottingEditor() except Exception as e: self.msg = QtGui.QErrorMessage(None) - self.msg.showMessage('Error while opening python plotting Editor.\ - Please look at console for more details ') + self.msg.showMessage( + 'Error while opening python plotting Editor.' + ' Please look at console for more details') print("Exception Message:", str(e)) self.obj_appconfig.print_error('Exception Message : ' + str(e)) self.msg.setWindowTitle("Error Message") else: self.msg = QtGui.QErrorMessage() - self.msg.showMessage('Please select the project first. You can either\ - create new project or open existing project') + self.msg.showMessage( + 'Please select the project first.' + ' You can either create new project or open existing project') self.msg.setWindowTitle("Error Message") # This function opens 'subcircuit' option in left-tool-bar. @@ -433,51 +436,6 @@ class Application(QtGui.QMainWindow): self.modelicaNetlist = os.path.join( self.projDir, self.projName + ".mo") - """ - try: - # Creating a command for Ngspice to Modelica converter - self.cmd1 = " - python3 ../ngspicetoModelica/NgspicetoModelica.py "\ - +self.ngspiceNetlist - self.obj_workThread1 = Worker.WorkerThread(self.cmd1) - self.obj_workThread1.start() - - - if self.obj_validation.validateTool("OMEdit"): - # Creating command to run OMEdit - self.cmd2 = "OMEdit "+self.modelicaNetlist - self.obj_workThread2 = Worker.WorkerThread(self.cmd2) - self.obj_workThread2.start() - else: - self.msg = QtGui.QMessageBox() - self.msgContent = "There was an error while - opening OMEdit.
\ - Please make sure OpenModelica is installed in your\ - system.
\ - To install it on Linux : Go to\ - OpenModelica Linux and \ - install nigthly build release.
\ - To install it on Windows : Go to\ - OpenModelica Windows\ - and install latest version.
" - self.msg.setTextFormat(QtCore.Qt.RichText) - self.msg.setText(self.msgContent) - self.msg.setWindowTitle("Missing OpenModelica") - self.obj_appconfig.print_info(self.msgContent) - self.msg.exec_() - - except Exception as e: - self.msg = QtGui.QErrorMessage() - self.msg.showMessage( - 'Unable to convert NgSpice netlist to\ - Modelica netlist :'+str(e)) - self.msg.setWindowTitle( - "Ngspice to Modelica conversion error") - self.obj_appconfig.print_error(str(e)) - """ - self.obj_Mainview.obj_dockarea.modelicaEditor(self.projDir) else: @@ -516,14 +474,18 @@ class Application(QtGui.QMainWindow): self.obj_workThread.start() else: self.msg = QtGui.QMessageBox() - self.msgContent = "There was an error while opening OMOptim.
\ - Please make sure OpenModelica is installed in your system.
\ - To install it on Linux : Go to OpenModelica Linux and \ - install nigthly build release.
\ - To install it on Windows : Go to OpenModelica Windows and \ - install latest version.
" + self.msgContent = ( + "There was an error while opening OMOptim.
" + "Please make sure OpenModelica is installed in your" + " system.
" + "To install it on Linux : Go to OpenModelica Linux and install nightly build" + " release.
" + "To install it on Windows : Go to OpenModelica Windows and install latest version.
" + ) self.msg.setTextFormat(QtCore.Qt.RichText) self.msg.setText(self.msgContent) self.msg.setWindowTitle("Error Message") -- cgit