diff options
author | rahulp13 | 2022-02-22 02:31:30 +0530 |
---|---|---|
committer | rahulp13 | 2022-02-22 02:31:30 +0530 |
commit | 87bc2c82192c948ddb88c52dfcd5213920920c2f (patch) | |
tree | e19ba25793ab0de04e9b337d653589c74aac2da1 /src/maker/createkicad.py | |
parent | 272bf20219595c3c541797b1045ce9c400ab02d6 (diff) | |
download | eSim-87bc2c82192c948ddb88c52dfcd5213920920c2f.tar.gz eSim-87bc2c82192c948ddb88c52dfcd5213920920c2f.tar.bz2 eSim-87bc2c82192c948ddb88c52dfcd5213920920c2f.zip |
Fixed typos and resolved flake8 issues
Diffstat (limited to 'src/maker/createkicad.py')
-rw-r--r--[-rwxr-xr-x] | src/maker/createkicad.py | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/maker/createkicad.py b/src/maker/createkicad.py index c8b14b6e..af30cee0 100755..100644 --- a/src/maker/createkicad.py +++ b/src/maker/createkicad.py @@ -30,7 +30,6 @@ from . import Appconfig import re import os -import sys # noqa F401 import xml.etree.cElementTree as ET from PyQt5 import QtWidgets @@ -68,40 +67,43 @@ class AutoSchematic: if (str(self.modelname) + '.xml') in files: xmlFound = root print(xmlFound) + break + if xmlFound is None: self.getPortInformation() self.createXML() self.createLib() + elif (xmlFound == os.path.join(self.xml_loc, 'Ngveri')): print('Library already exists...') ret = QtWidgets.QMessageBox.warning( None, "Warning", '''<b>Library files for this model''' + ''' already exist. Do you want to overwrite it?</b><br/> If yes press ok, else cancel it and ''' + - '''change the name of your vhdl file.''', + '''change the name of your verilog model.''', QtWidgets.QMessageBox.Ok, QtWidgets.QMessageBox.Cancel ) + if ret == QtWidgets.QMessageBox.Ok: print("Overwriting existing libraries") self.getPortInformation() self.createXML() - self.removeOldLibrary() # Removes the exisitng library + self.removeOldLibrary() # Removes the existng library self.createLib() else: print("Library Creation Cancelled") return "Error" else: - print('Pre existing library...') + print('Pre-existing library...') ret = QtWidgets.QMessageBox.critical( self.parent, "Error", '''<b>A standard library already ''' + '''exists with this name.</b><br/><b>Please change the ''' + - '''name of your vhdl file and upload it again</b>''', + '''name of your verilog model and add it again.</b>''', QtWidgets.QMessageBox.Ok ) # getting the port information here - def getPortInformation(self): portInformation = PortInfo(self, self.modelpath) portInformation.getPortInfo() @@ -267,7 +269,6 @@ class AutoSchematic: port_list = [] j = 0 - k = 0 # noqa F841 for i in range(total): if (i < inputs): input_port[1] = inputName[i] |