diff options
author | 2020-03-16 11:55:37 +0000 | |
---|---|---|
committer | 2020-03-16 11:55:37 +0000 | |
commit | 004298391e45dee9421748bc1312cda5d2af2d43 (patch) | |
tree | 5bff81716944c11e6be8f63a794b5188084449b5 /tools/sdv/SoftwarePostValid | |
parent | 0f663f5ce102f2d91c2aa6a8bfb6c2ef13d8ba7d (diff) | |
parent | b2ee1e349dc898aed861a5c7f31d86b83e6fe1be (diff) |
Merge "FLAKE8: Fixes to SDV python files."
Diffstat (limited to 'tools/sdv/SoftwarePostValid')
-rwxr-xr-x | tools/sdv/SoftwarePostValid/__init__.py | 1 | ||||
-rw-r--r-- | tools/sdv/SoftwarePostValid/swpostvalidator.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/tools/sdv/SoftwarePostValid/__init__.py b/tools/sdv/SoftwarePostValid/__init__.py index 1c6f121..0a964b6 100755 --- a/tools/sdv/SoftwarePostValid/__init__.py +++ b/tools/sdv/SoftwarePostValid/__init__.py @@ -15,4 +15,5 @@ """Sw Validator interface and helpers. """ +# flake8: noqa from SoftwarePostValid.swpostvalidator import * diff --git a/tools/sdv/SoftwarePostValid/swpostvalidator.py b/tools/sdv/SoftwarePostValid/swpostvalidator.py index 2901cd4..4776123 100644 --- a/tools/sdv/SoftwarePostValid/swpostvalidator.py +++ b/tools/sdv/SoftwarePostValid/swpostvalidator.py @@ -17,6 +17,7 @@ Abstract class for Software Postvalidations. Implementors, please inherit from this class. """ + class ISwPostValidator(): """ Model for a Sw Validator """ def __init__(self): |