mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-11-03 20:27:54 +00:00
lf_cv_base: remove shadow built in error
Signed-off-by: Matthew Stidham <stidmatt@gmail.com>
This commit is contained in:
@@ -27,15 +27,15 @@ class ChamberViewBase(LFCliBase):
|
|||||||
def remove_text_blobs(self):
|
def remove_text_blobs(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def add_text_blobs(self, type="", name="", data="", debug=False):
|
def add_text_blobs(self, text_type="", name="", data="", debug=False):
|
||||||
data = {'type': type,
|
data = {'type': text_type,
|
||||||
'name': name,
|
'name': name,
|
||||||
"text": data
|
"text": data
|
||||||
}
|
}
|
||||||
self.json_post("/cli-json/add_text_blob/", data, debug_=debug)
|
self.json_post("/cli-json/add_text_blob/", data, debug_=debug)
|
||||||
|
|
||||||
def get_text_blob(self, type="", name="", debug=False):
|
def get_text_blob(self, text_type="", name="", debug=False):
|
||||||
data = {'type': type,
|
data = {'type': text_type,
|
||||||
'name': name,
|
'name': name,
|
||||||
}
|
}
|
||||||
return self.json_post("/cli-json/show_text_blob/", data, debug_=debug)
|
return self.json_post("/cli-json/show_text_blob/", data, debug_=debug)
|
||||||
|
|||||||
Reference in New Issue
Block a user