diff options
Diffstat (limited to 'vnfs/vnf')
-rw-r--r-- | vnfs/vnf/vnf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vnfs/vnf/vnf.py b/vnfs/vnf/vnf.py index 242fc502..759bdd66 100644 --- a/vnfs/vnf/vnf.py +++ b/vnfs/vnf/vnf.py @@ -1,4 +1,4 @@ -# Copyright 2015 Intel Corporation. +# Copyright 2015-2017 Intel Corporation. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -125,6 +125,7 @@ class IVnf(tasks.Process): self.execute(cmd) self.wait(prompt=prompt, timeout=timeout) + # pylint: disable=simplifiable-if-statement def validate_start(self, dummy_result): """ Validate call of VNF start() """ @@ -146,4 +147,3 @@ class IVnf(tasks.Process): This method is static """ IVnf._number_vnfs = 0 - |