diff options
author | Sunil Shetye | 2019-06-25 15:00:55 +0530 |
---|---|---|
committer | GitHub | 2019-06-25 15:00:55 +0530 |
commit | 32acf14bfbfa5d5874ebfdbf88ef64777f05e3f8 (patch) | |
tree | fc23c9c31d0821fa0deec33aa452f70df602217d /src/ngspiceSimulation | |
parent | 73399832febef4407eb8d8a9e57d535f18b18654 (diff) | |
parent | c263636b86d204c9500ed2fe58e4f9db74c28bee (diff) | |
download | eSim-32acf14bfbfa5d5874ebfdbf88ef64777f05e3f8.tar.gz eSim-32acf14bfbfa5d5874ebfdbf88ef64777f05e3f8.tar.bz2 eSim-32acf14bfbfa5d5874ebfdbf88ef64777f05e3f8.zip |
Merge pull request #101 from nilshah98/sphinx
Made pep8 compliant, Resolves #100
Diffstat (limited to 'src/ngspiceSimulation')
-rw-r--r-- | src/ngspiceSimulation/pythonPlotting.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ngspiceSimulation/pythonPlotting.py b/src/ngspiceSimulation/pythonPlotting.py index de6d958a..b9474403 100644 --- a/src/ngspiceSimulation/pythonPlotting.py +++ b/src/ngspiceSimulation/pythonPlotting.py @@ -626,7 +626,7 @@ class DataExtraction: p += 1 # 'p' gives no. of lines of data for each node/branch if "Index" in i: npv += 1 - # 'npv' gives the no of partitions for a single voltage node + # 'npv' gives the no of partitions for a single voltage node # print("npv:", npv) if "AC" in i: # DC for dc files and AC for ac ones break @@ -637,7 +637,7 @@ class DataExtraction: p += 1 if "Index" in i: npv += 1 - # 'npv' gives the no of partitions for a single voltage node + # 'npv' gives the no of partitions for a single voltage node # print("npv:", npv) if "Transient" in i: # DC for dc files and AC for ac ones break @@ -649,7 +649,7 @@ class DataExtraction: p += 1 if "Index" in i: npv += 1 - # 'npv' gives the no of partitions for a single voltage node + # 'npv' gives the no of partitions for a single voltage node # print("npv:", npv) if "DC" in i: # DC for dc files and AC for ac ones break |