diff options
author | nilshah98 | 2019-06-07 18:54:35 +0530 |
---|---|---|
committer | nilshah98 | 2019-06-13 12:15:50 +0530 |
commit | a0f738ba15264b69d9d51755569408bdd8e383b5 (patch) | |
tree | 3d472af32b57508a16dd7f81e5c54f8ccda1bf47 /src/projManagement/Validation.py | |
parent | cc9bb8d5d56e64b6e6b6ff2db988ff200b9f720d (diff) | |
download | eSim-a0f738ba15264b69d9d51755569408bdd8e383b5.tar.gz eSim-a0f738ba15264b69d9d51755569408bdd8e383b5.tar.bz2 eSim-a0f738ba15264b69d9d51755569408bdd8e383b5.zip |
pep8 fixes and list models bug fixed
Diffstat (limited to 'src/projManagement/Validation.py')
-rw-r--r-- | src/projManagement/Validation.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/projManagement/Validation.py b/src/projManagement/Validation.py index b0cfb5a1..9fcac9a2 100644 --- a/src/projManagement/Validation.py +++ b/src/projManagement/Validation.py @@ -42,6 +42,7 @@ class Validation: True => If the folder contains the projName.proj file False => If the folder doesn't contain projName.proj file """ + def __init__(self): pass @@ -69,6 +70,7 @@ class Validation: :"CHECKNAME" => If space is there in name :"VALID" => If valid project name given """ + def validateNewproj(self, projDir): """ This Project Validate New Project Information @@ -97,6 +99,7 @@ class Validation: True False """ + def validateKicad(self, projDir): """ This function validate if Kicad components are present @@ -118,6 +121,7 @@ class Validation: True False """ + def validateCir(self, projDir): """ This function checks if ".cir" file is present. |