summaryrefslogtreecommitdiffstats
path: root/src/debputy/plugin/debputy/manifest_root_rules.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/debputy/plugin/debputy/manifest_root_rules.py')
-rw-r--r--src/debputy/plugin/debputy/manifest_root_rules.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/debputy/plugin/debputy/manifest_root_rules.py b/src/debputy/plugin/debputy/manifest_root_rules.py
index cc2b1d4..86a1c27 100644
--- a/src/debputy/plugin/debputy/manifest_root_rules.py
+++ b/src/debputy/plugin/debputy/manifest_root_rules.py
@@ -33,7 +33,7 @@ if TYPE_CHECKING:
def register_manifest_root_rules(api: DebputyPluginInitializerProvider) -> None:
# Registration order matters. Notably, definitions must come before anything that can
# use definitions (variables), which is why it is second only to the manifest version.
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
OPARSER_MANIFEST_ROOT,
MK_MANIFEST_VERSION,
ManifestVersionFormat,
@@ -56,13 +56,13 @@ def register_manifest_root_rules(api: DebputyPluginInitializerProvider) -> None:
),
),
)
- api.plugable_object_parser(
+ api.pluggable_object_parser(
OPARSER_MANIFEST_ROOT,
MK_MANIFEST_DEFINITIONS,
object_parser_key=OPARSER_MANIFEST_DEFINITIONS,
on_end_parse_step=lambda _a, _b, _c, mp: mp._ensure_package_states_is_initialized(),
)
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
OPARSER_MANIFEST_DEFINITIONS,
MK_MANIFEST_VARIABLES,
ManifestVariablesParsedFormat,
@@ -105,7 +105,7 @@ def register_manifest_root_rules(api: DebputyPluginInitializerProvider) -> None:
),
),
)
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
OPARSER_MANIFEST_ROOT,
MK_INSTALLATIONS,
ListOfInstallRulesFormat,
@@ -156,7 +156,7 @@ def register_manifest_root_rules(api: DebputyPluginInitializerProvider) -> None:
),
),
)
- api.plugable_manifest_rule(
+ api.pluggable_manifest_rule(
OPARSER_MANIFEST_ROOT,
MK_PACKAGES,
DictFormat,