lint: Fix linting errors in git_log_to_release_notes.py

This commit is contained in:
Reinier van der Leer
2024-05-07 18:53:19 +02:00
parent 56104bd047
commit 08c32a7a12

View File

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