Files
2022-02-23 18:03:36 +01:00

12 lines
342 B
Python

from .._common.base import get_monkey_patching_base_class
_substitutions = {}
MonkeyPatchingBaseClass = get_monkey_patching_base_class(
_substitutions,
register_global_yaml_helpers=False,
)
YamlLoader = MonkeyPatchingBaseClass.YamlLoader
YamlDumper = MonkeyPatchingBaseClass.YamlDumper
YamlLoader.add_path_resolver("!RootType", [])