diff options
author | Eyantra698Sumanto | 2022-01-29 20:19:00 +0530 |
---|---|---|
committer | Eyantra698Sumanto | 2022-01-29 20:19:00 +0530 |
commit | 24af4e69adcc52fe8b03ad4ca5bb422d29b8292e (patch) | |
tree | 66ce5f7b1b4aed176b3c9c3494b6372048ae4a3b /src/maker/createkicad.py | |
parent | ce6b5684596495bad4036e4445774fe85a5e8a4c (diff) | |
download | eSim-24af4e69adcc52fe8b03ad4ca5bb422d29b8292e.tar.gz eSim-24af4e69adcc52fe8b03ad4ca5bb422d29b8292e.tar.bz2 eSim-24af4e69adcc52fe8b03ad4ca5bb422d29b8292e.zip |
Fixed pep8 issues
Diffstat (limited to 'src/maker/createkicad.py')
-rwxr-xr-x | src/maker/createkicad.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/maker/createkicad.py b/src/maker/createkicad.py index 40a4bfdf..1a00bde9 100755 --- a/src/maker/createkicad.py +++ b/src/maker/createkicad.py @@ -16,11 +16,11 @@ # GUIDED BY: Steve Hoover, Founder Redwood EDA # Kunal Ghosh, VLSI System Design Corp.Pvt.Ltd # Anagha Ghosh, VLSI System Design Corp.Pvt.Ltd -#OTHER CONTRIBUTERS: +# OTHER CONTRIBUTERS: # Prof. Madhuri Kadam, Shree L. R. Tiwari College of Engineering -# Rohinth Ram, Madras Institue of Technology -# Charaan S., Madras Institue of Technology -# Nalinkumar S., Madras Institue of Technology +# Rohinth Ram, Madras Institue of Technology +# Charaan S., Madras Institue of Technology +# Nalinkumar S., Madras Institue of Technology # ORGANIZATION: eSim Team at FOSSEE, IIT Bombay # CREATED: Monday 29, November 2021 # REVISION: Tuesday 25, January 2022 @@ -30,7 +30,7 @@ from . import Appconfig import re import os -import sys +import sys # noqa F401 import xml.etree.cElementTree as ET from PyQt5 import QtWidgets @@ -267,7 +267,7 @@ class AutoSchematic: port_list = [] j = 0 - k = 0 + k = 0 # noqa F841 for i in range(total): if (i < inputs): input_port[1] = inputName[i] |