fixing lint errors. removing mutually exclusive checks

pull/167/head
Andrew Mirsky 2025-05-16 17:31:10 -04:00
rodzic c289ae9132
commit da2af91ce4
2 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -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:
"""

Wyświetl plik

@ -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.