We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6649bc6 commit 223cb2cCopy full SHA for 223cb2c
2 files changed
src/hermes/commands/base.py
@@ -162,7 +162,10 @@ def __call__(self, args: argparse.Namespace):
162
163
164
class HermesPlugin(abc.ABC):
165
- """Base class for all HERMES plugins."""
+ """Base class for all HERMES plugins.
166
+
167
+ Objects of this class are callables.
168
+ """
169
170
settings_class: Optional[Type] = None
171
src/hermes/commands/curate/base.py
@@ -25,10 +25,7 @@ class _CurateSettings(BaseModel):
25
26
27
class BaseCuratePlugin(HermesPlugin):
28
- """Base class for curation plugins.
29
-
30
- Objects of this class are callables.
31
- """
+ """Base class for curation plugins."""
32
33
def __init__(self, command, ctx):
34
self.command = command
0 commit comments