aboutsummaryrefslogtreecommitdiff
path: root/autogpts/autogpt/autogpt/commands/git_operations.py
diff options
context:
space:
mode:
Diffstat (limited to 'autogpts/autogpt/autogpt/commands/git_operations.py')
-rw-r--r--autogpts/autogpt/autogpt/commands/git_operations.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/autogpts/autogpt/autogpt/commands/git_operations.py b/autogpts/autogpt/autogpt/commands/git_operations.py
index bc8abc13f..01930e420 100644
--- a/autogpts/autogpt/autogpt/commands/git_operations.py
+++ b/autogpts/autogpt/autogpt/commands/git_operations.py
@@ -1,8 +1,5 @@
"""Commands to perform Git operations"""
-COMMAND_CATEGORY = "git_operations"
-COMMAND_CATEGORY_TITLE = "Git Operations"
-
from pathlib import Path
from git.repo import Repo
@@ -15,6 +12,9 @@ from autogpt.url_utils.validators import validate_url
from .decorators import sanitize_path_arg
+COMMAND_CATEGORY = "git_operations"
+COMMAND_CATEGORY_TITLE = "Git Operations"
+
@command(
"clone_repository",
@@ -47,7 +47,7 @@ def clone_repository(url: str, clone_path: Path, agent: Agent) -> str:
str: The result of the clone operation.
"""
split_url = url.split("//")
- auth_repo_url = f"//{agent.legacy_config.github_username}:{agent.legacy_config.github_api_key}@".join(
+ auth_repo_url = f"//{agent.legacy_config.github_username}:{agent.legacy_config.github_api_key}@".join( # noqa: E501
split_url
)
try: