diff --git a/dotdrop/utils.py b/dotdrop/utils.py index 81404e8..e24099f 100644 --- a/dotdrop/utils.py +++ b/dotdrop/utils.py @@ -133,8 +133,10 @@ def must_ignore(paths, ignores, debug=False): def is_dict(obj): + """Return true if obj is dict.""" return isinstance(obj, dict) def is_not_magic(name): + """Return true if name is not a magic method name.""" return (name[0:2], name[-2:]) != ('__', '__')