mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
12 lines
342 B
Python
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", [])
|