summaryrefslogtreecommitdiffstats
path: root/src/debputy/plugin/api/impl.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/debputy/plugin/api/impl.py')
-rw-r--r--src/debputy/plugin/api/impl.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/debputy/plugin/api/impl.py b/src/debputy/plugin/api/impl.py
index e25713f..8b75322 100644
--- a/src/debputy/plugin/api/impl.py
+++ b/src/debputy/plugin/api/impl.py
@@ -783,7 +783,7 @@ class DebputyPluginInitializerProvider(DebputyPluginInitializer):
self._unloaders.append(_unload)
- def plugable_object_parser(
+ def pluggable_object_parser(
self,
rule_type: str,
rule_name: str,
@@ -821,12 +821,12 @@ class DebputyPluginInitializerProvider(DebputyPluginInitializer):
def _unload() -> None:
raise PluginInitializationError(
- "Cannot unload plugable_object_parser (not implemented)"
+ "Cannot unload pluggable_object_parser (not implemented)"
)
self._unloaders.append(_unload)
- def plugable_manifest_rule(
+ def pluggable_manifest_rule(
self,
rule_type: Union[TTP, str],
rule_name: Union[str, List[str]],
@@ -869,7 +869,7 @@ class DebputyPluginInitializerProvider(DebputyPluginInitializer):
def _unload() -> None:
raise PluginInitializationError(
- "Cannot unload plugable_manifest_rule (not implemented)"
+ "Cannot unload pluggable_manifest_rule (not implemented)"
)
self._unloaders.append(_unload)