diff --git a/scripts/lynx/merge_registries.py b/scripts/lynx/merge_registries.py index 47dcd999..42b02063 100644 --- a/scripts/lynx/merge_registries.py +++ b/scripts/lynx/merge_registries.py @@ -8,9 +8,11 @@ output_registry = ARTIFACTS_DIR / "lynx-alpha-13-merged-registry.json" -merge_registries( - registry_1_filepath=lynx_child_deployment_registry, - registry_2_filepath=lynx_registry_w_subscription_manager, - output_filepath=output_registry, - deprecated_contracts=["StakeInfo"], -) + +def main(): + merge_registries( + registry_1_filepath=lynx_child_deployment_registry, + registry_2_filepath=lynx_registry_w_subscription_manager, + output_filepath=output_registry, + deprecated_contracts=["StakeInfo"], + )