qontract-reconcile 0.10.2.dev50__py3-none-any.whl → 0.10.2.dev52__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of qontract-reconcile might be problematic. Click here for more details.

@@ -1,13 +0,0 @@
1
- def get_or_init(d, k, v):
2
- """Gets (or initiates) a value in a dictionary key
3
-
4
- Args:
5
- d (dict): dictionary to work
6
- k (hashable): key to use
7
- v (value): value to initiate if key doesn't exist
8
-
9
- Returns:
10
- [type]: [description]
11
- """
12
- d.setdefault(k, v)
13
- return d[k]