diff options
-rwxr-xr-x | dynamic.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -35,7 +35,7 @@ class AnsibleInput: def __init__(self, filepath): with open(filepath) as file: - self.data = yaml.load(file, Loader=yaml.FullLoader) + self.data = yaml.load(file, Loader=yaml.FullLoader) or {} self.name = os.path.splitext(os.path.basename(filepath))[0] |