aboutsummaryrefslogtreecommitdiff
path: root/autogpts/autogpt/autogpt/command_decorator.py
diff options
context:
space:
mode:
Diffstat (limited to 'autogpts/autogpt/autogpt/command_decorator.py')
-rw-r--r--autogpts/autogpt/autogpt/command_decorator.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/autogpts/autogpt/autogpt/command_decorator.py b/autogpts/autogpt/autogpt/command_decorator.py
index 97e0b5419..70a519a42 100644
--- a/autogpts/autogpt/autogpt/command_decorator.py
+++ b/autogpts/autogpt/autogpt/command_decorator.py
@@ -27,7 +27,9 @@ def command(
aliases: list[str] = [],
available: Literal[True] | Callable[[BaseAgent], bool] = True,
) -> Callable[[Callable[P, CO]], Callable[P, CO]]:
- """The command decorator is used to create Command objects from ordinary functions."""
+ """
+ The command decorator is used to create Command objects from ordinary functions.
+ """
def decorator(func: Callable[P, CO]) -> Callable[P, CO]:
typed_parameters = [