diff --git a/amqtt/plugins/manager.py b/amqtt/plugins/manager.py index 01119dd..e3c4496 100644 --- a/amqtt/plugins/manager.py +++ b/amqtt/plugins/manager.py @@ -93,6 +93,7 @@ class PluginManager: def get_plugin(self, name: str) -> Plugin | None: """Get a plugin by its name from the plugins loaded for the current namespace. + :param name: :return: """ diff --git a/pyproject.toml b/pyproject.toml index ab5d144..0bb56ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -109,6 +109,8 @@ ignore = [ "D101", # Missing docstring in public class "D102", # Missing docstring in public method "D107", # Missing docstring in `__init__` + "D203", # Incorrect blank line before class (mutually exclusive D211) + "D213", # Multi-line summary second line (mutually exclusive D212) "FIX002", # Checks for "TODO" comments. "TD002", # TODO Missing author. "TD003", # TODO Missing issue link for this TODO.