From 8afa6857a5ec47a65d5cd2d518356c6a9b13ec59 Mon Sep 17 00:00:00 2001 From: Christian Hagau Date: Mon, 26 Aug 2024 20:18:23 +0200 Subject: [PATCH] yaml_helper: don't run code upon module import --- yaml_helper.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/yaml_helper.py b/yaml_helper.py index 868176e..f56c13c 100644 --- a/yaml_helper.py +++ b/yaml_helper.py @@ -102,5 +102,3 @@ def register_constructors(): Register YAML constructors for all the custom tags """ yaml.add_constructor('!include', include_constructor) - -register_constructors()