From 762be688ceb3d6e42c0a4f45f08f892a7dd7c829 Mon Sep 17 00:00:00 2001 From: Reinier van der Leer Date: Wed, 27 Sep 2023 19:55:56 -0400 Subject: [PATCH] Fix lint --- autogpts/autogpt/tests/unit/test_commands.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/autogpts/autogpt/tests/unit/test_commands.py b/autogpts/autogpt/tests/unit/test_commands.py index 4d1608896288..9bff7c12d17d 100644 --- a/autogpts/autogpt/tests/unit/test_commands.py +++ b/autogpts/autogpt/tests/unit/test_commands.py @@ -54,7 +54,8 @@ def test_command_creation(): assert cmd.description == "Example command" assert cmd.method == example_command_method assert ( - str(cmd) == "example: Example command. Params: (arg1: integer, arg2: Optional[string])" + str(cmd) + == "example: Example command. Params: (arg1: integer, arg2: Optional[string])" )