aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xautogpts/autogpt/scripts/git_log_to_release_notes.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/autogpts/autogpt/scripts/git_log_to_release_notes.py b/autogpts/autogpt/scripts/git_log_to_release_notes.py
index 123a8c6c4..8b03dff68 100755
--- a/autogpts/autogpt/scripts/git_log_to_release_notes.py
+++ b/autogpts/autogpt/scripts/git_log_to_release_notes.py
@@ -9,7 +9,6 @@ from git import Repo, TagReference
from autogpt.core.resource.model_providers import ChatMessage, MultiProvider
from autogpt.core.resource.model_providers.anthropic import AnthropicModelName
-from autogpt.core.resource.model_providers.openai import OpenAIModelName
from autogpt.core.runner.client_lib.utils import coroutine
@@ -117,7 +116,7 @@ First some important notes w.r.t. using the application:
* Frontend -> `frontend`
See also the [README](/#readme).
-""".lstrip()
+""".lstrip() # noqa
SYSTEM_PROMPT = f"""
@@ -129,7 +128,7 @@ Here is an example of what we like our release notes to look and read like:
---------------------------------------------------------------------------
NOTE: These example release notes are not related to the git log that you should write release notes for!
Do not mention the changes in the example when writing your release notes!
-""".lstrip()
+""".lstrip() # noqa
if __name__ == "__main__":
import dotenv