diff options
author | Steve Siani <alphonse.steve.siani.djissitchi@ibm.com> | 2019-08-28 12:17:02 -0400 |
---|---|---|
committer | Steve Siani <alphonse.steve.siani.djissitchi@ibm.com> | 2019-08-28 12:17:02 -0400 |
commit | e6ff14aac1f81e976fbdfa67d27a6f8ba3a585eb (patch) | |
tree | 8e21504763b82e5679460ca5302571197a48b4c8 | |
parent | 2e8016248a0ea29e8e4918d32bd263473520eaa3 (diff) |
Remove duplicated function in netconfclient.py
Signed-off-by: Steve Siani <alphonse.steve.siani.djissitchi@ibm.com>
Change-Id: I8308c579f78e3da3e5abc756733212afc606b435
-rw-r--r-- | components/scripts/python/ccsdk_netconf/netconfclient.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/components/scripts/python/ccsdk_netconf/netconfclient.py b/components/scripts/python/ccsdk_netconf/netconfclient.py index 97f730081..74ac7e3bc 100644 --- a/components/scripts/python/ccsdk_netconf/netconfclient.py +++ b/components/scripts/python/ccsdk_netconf/netconfclient.py @@ -60,9 +60,6 @@ class NetconfClient: device_response = self.netconf_rpc_client.discardConfig() return device_response - def set_execution_attribute_response_data(self, response_data): - self.setAttribute(ATTRIBUTE_RESPONSE_DATA, response_data) - def get(self, filter_content): device_response = self.netconf_rpc_client.get(filter_content) return device_response |