aboutsummaryrefslogtreecommitdiffstats
path: root/test/vcpe/vcpe.py
diff options
context:
space:
mode:
authorBartek Grzybowski <b.grzybowski@partner.samsung.com>2020-03-05 11:41:08 +0100
committerMarco Platania <platania@research.att.com>2020-03-05 15:26:48 +0000
commit4be94a653e2bff518682f10fce2b5e2b9eeb7ed6 (patch)
treebfbc245f1a30e1655df5952278b1e921a0fdd17d /test/vcpe/vcpe.py
parent3d3d3c28d88d1f7bad2b9a274fe9ad4cfaf01554 (diff)
Supress pylint warnings for undefined variables
'cmp', 'file' and 'unicode' functions are Python 2 specific. Change-Id: I30fa091ef157453a328ab40e4186c30e5ed1b3a1 Issue-ID: INT-1427 Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
Diffstat (limited to 'test/vcpe/vcpe.py')
-rwxr-xr-xtest/vcpe/vcpe.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/vcpe/vcpe.py b/test/vcpe/vcpe.py
index aa924bca6..f6c85ec53 100755
--- a/test/vcpe/vcpe.py
+++ b/test/vcpe/vcpe.py
@@ -312,7 +312,7 @@ if __name__ == '__main__':
#if 'y' == raw_input('Ready to deploy infrastructure? y/n: ').lower():
deploy_infra()
elif args.mode == 'customer':
- if 'y' == raw_input('Ready to deploy customer service? y/n: ').lower():
+ if 'y' == raw_input('Ready to deploy customer service? y/n: ').lower(): # pylint: disable=E0602
deploy_custom_service()
elif args.mode == 'loop':
closed_loop(22)