aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/honeycomb/proxyARP.py
diff options
context:
space:
mode:
authorjan.hradil <jan.hradil@pantheon.tech>2017-04-27 14:47:16 +0200
committerTibor Frank <tifrank@cisco.com>2017-05-02 06:24:18 +0000
commit44cafa8a265cfb1144638430079ef4dbf2501d72 (patch)
treea1eaea31c31578107c9cd11946772c259344010b /resources/libraries/python/honeycomb/proxyARP.py
parent41212b4103c2f1b746d8b2101328e49e8697ef6c (diff)
csit-validate-pylint-master/3731 for build 3731
pylint repairs deleted duplicated method from HcPersistence.py Change-Id: I426e6c15957c995ea10bd11ae2deac75b1cab922 Signed-off-by: jan.hradil <jan.hradil@pantheon.tech>
Diffstat (limited to 'resources/libraries/python/honeycomb/proxyARP.py')
-rw-r--r--resources/libraries/python/honeycomb/proxyARP.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/libraries/python/honeycomb/proxyARP.py b/resources/libraries/python/honeycomb/proxyARP.py
index c9d9040943..9696bf4238 100644
--- a/resources/libraries/python/honeycomb/proxyARP.py
+++ b/resources/libraries/python/honeycomb/proxyARP.py
@@ -122,11 +122,11 @@ class ProxyARPKeywords(object):
path = "/interface/{0}/proxy-arp".format(interface)
if state == "disable":
- status_code, resp = HcUtil.delete_honeycomb_data(
+ status_code, _ = HcUtil.delete_honeycomb_data(
node, "config_vpp_interfaces", path)
elif state == "enable":
data = {"proxy-arp": {}}
- status_code, resp = HcUtil.put_honeycomb_data(
+ status_code, _ = HcUtil.put_honeycomb_data(
node, "config_vpp_interfaces", data, path)
else:
raise ValueError("State argument has to be enable or disable.")