diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/core.py b/python/core.py index 5e2ef75..8b01b69 100644 --- a/python/core.py +++ b/python/core.py @@ -39,7 +39,7 @@ def dissoc(src_hm, *keys): return hm def get(hm, key): - if key in hm: + if hm and key in hm: return hm[key] else: return None |
