summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-09-06 12:02:56 +0200
committerChristian Poessinger <christian@poessinger.com>2021-09-06 12:02:56 +0200
commit9d0c37fbbc91acc9f2c0f2abaab360479e451f0f (patch)
treea9f360e064b90a3ed2a74ec64fbd5d53df935ea0 /python
parentb060fb70cdca155027f92222ea0d989f8e9bf21f (diff)
downloadvyos-1x-9d0c37fbbc91acc9f2c0f2abaab360479e451f0f.tar.gz
vyos-1x-9d0c37fbbc91acc9f2c0f2abaab360479e451f0f.zip
vyos.util: T2755: rename dict_search() function args to match other implementations
Diffstat (limited to 'python')
-rw-r--r--python/vyos/util.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/python/vyos/util.py b/python/vyos/util.py
index 93a2f6640..18b7f5fcb 100644
--- a/python/vyos/util.py
+++ b/python/vyos/util.py
@@ -692,21 +692,21 @@ def find_device_file(device):
return None
-def dict_search(path, my_dict):
- """ Traverse Python dictionary (my_dict) delimited by dot (.).
+def dict_search(path, dict_object):
+ """ Traverse Python dictionary (dict_object) delimited by dot (.).
Return value of key if found, None otherwise.
- This is faster implementation then jmespath.search('foo.bar', my_dict)"""
- if not isinstance(my_dict, dict) or not path:
+ This is faster implementation then jmespath.search('foo.bar', dict_object)"""
+ if not isinstance(dict_object, dict) or not path:
return None
parts = path.split('.')
inside = parts[:-1]
if not inside:
- if path not in my_dict:
+ if path not in dict_object:
return None
- return my_dict[path]
- c = my_dict
+ return dict_object[path]
+ c = dict_object
for p in parts[:-1]:
c = c.get(p, {})
return c.get(parts[-1], None)