summaryrefslogtreecommitdiff
path: root/src/modelEditor
diff options
context:
space:
mode:
authornilshah982019-06-11 15:14:02 +0530
committernilshah982019-06-11 15:14:02 +0530
commit9e92a335fc364d391e9b524c226602a1677c2518 (patch)
tree85cc00b16004b7c64dc76ebdf4cc84d6b1a84499 /src/modelEditor
parent60f301882da9aa06faba7c3c2b1b9fe2b9f39f17 (diff)
downloadeSim-9e92a335fc364d391e9b524c226602a1677c2518.tar.gz
eSim-9e92a335fc364d391e9b524c226602a1677c2518.tar.bz2
eSim-9e92a335fc364d391e9b524c226602a1677c2518.zip
Removed noqa
Diffstat (limited to 'src/modelEditor')
-rw-r--r--src/modelEditor/ModelEditor.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/modelEditor/ModelEditor.py b/src/modelEditor/ModelEditor.py
index e1dfec6b..573e506c 100644
--- a/src/modelEditor/ModelEditor.py
+++ b/src/modelEditor/ModelEditor.py
@@ -523,7 +523,6 @@ class ModelEditorclass(QtGui.QWidget):
def removeparameter(self):
self.savebtn.setDisabled(False)
index = self.modeltable.currentIndex()
- param = str(index.data()) # noqa
remove_item = self.modeltable.item(index.row(), 0).text()
self.modeltable.removeRow(index.row())
del self.modeldict[str(remove_item)]
@@ -634,7 +633,6 @@ class ModelEditorclass(QtGui.QWidget):
defaultcwd = os.getcwd()
savepath = os.path.join(self.savepathtest, 'User Libraries')
- savefilepath = os.path.join(savepath, model_name + ".xml") # noqa
os.chdir(savepath)
text, ok1 = QtGui.QInputDialog.getText(
self, 'Model Name', 'Enter Model Library Name')