diff options
author | opensource-tnbt <sridhar.rao@spirent.com> | 2020-08-01 22:12:02 +0530 |
---|---|---|
committer | opensource-tnbt <sridhar.rao@spirent.com> | 2020-08-03 14:53:00 +0530 |
commit | 42af6fa2ef682d28d12952831aa0c74fd647daad (patch) | |
tree | 27f73a3410005b77be7b92352efe32fc1f05a662 /sdv/NwLinksValid | |
parent | d5a010aa2e40cafabf012b096f508b144f9d3d8b (diff) |
SDV: Reorganize subprojects
This patch reorganizes the subprojects.
Pylint Fixes. Additional Configurations
Signed-off-by: Sridhar K. N. Rao <sridhar.rao@spirent.com>
Change-Id: I021f33f035d7b2dcfded230ca40337afdac183e8
Diffstat (limited to 'sdv/NwLinksValid')
-rw-r--r-- | sdv/NwLinksValid/nwlinksvalidator.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sdv/NwLinksValid/nwlinksvalidator.py b/sdv/NwLinksValid/nwlinksvalidator.py index 5e06590..314567b 100644 --- a/sdv/NwLinksValid/nwlinksvalidator.py +++ b/sdv/NwLinksValid/nwlinksvalidator.py @@ -29,10 +29,6 @@ class INwLinksValidator(): """ Default Validation values """ return True - def validate_compute_node_links(self): + def validate(self): """ Validating Compute Node Links""" raise NotImplementedError('Please call an implementation.') - - def validate_control_node_links(self): - """ Validating Controller Node Links""" - raise NotImplementedError('Please call an implementation.') |