From 4be94a653e2bff518682f10fce2b5e2b9eeb7ed6 Mon Sep 17 00:00:00 2001 From: Bartek Grzybowski Date: Thu, 5 Mar 2020 11:41:08 +0100 Subject: 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 --- test/ete/scripts/probe-onap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/ete/scripts') diff --git a/test/ete/scripts/probe-onap.py b/test/ete/scripts/probe-onap.py index c41b97b0a..2ab849387 100644 --- a/test/ete/scripts/probe-onap.py +++ b/test/ete/scripts/probe-onap.py @@ -189,7 +189,7 @@ class Pod(object): return self.shas_images.values() def __cmp__(self, other): - return cmp(self.name, other.name) + return cmp(self.name, other.name) # pylint: disable=E0602 def __str__(self): desc = self.name + "\n" -- cgit 1.2.3-korg