aboutsummaryrefslogtreecommitdiffstats
path: root/test/vcpe/preload.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/preload.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/preload.py')
-rwxr-xr-xtest/vcpe/preload.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/vcpe/preload.py b/test/vcpe/preload.py
index 6517fe5d8..117b63ec6 100755
--- a/test/vcpe/preload.py
+++ b/test/vcpe/preload.py
@@ -33,7 +33,7 @@ class Preload:
stk.append(v)
elif type(v) is list:
stk.extend(v)
- elif type(v) is str or type(v) is unicode:
+ elif type(v) is str or type(v) is unicode: # pylint: disable=E0602
if self.vcpecommon.template_variable_symbol in v:
data[k] = self.replace(v, replace_dict)
else: