Skip to content

Commit

Permalink
Refactor line 136 to adhere to PEP 8 line length standards
Browse files Browse the repository at this point in the history
  • Loading branch information
AI Developer committed Dec 27, 2023
1 parent e7b2ffa commit e440ff6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ai_developer/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ def make_pull_request(sandbox: Sandbox, args: Dict[str, Any]) -> str:
f"From '{new_branch_name}' to '{base_branch}' with title '{title}'"
)

# Switch to a new branch for the pull request
# If you need to modify a file, use modify_file_line action or return full file content because save_content_to_file action will overwrite file content.

git_checkout_proc = sandbox.process.start_and_wait(
f"git -C {REPO_DIRECTORY} checkout -b {new_branch_name}"
)
Expand Down

0 comments on commit e440ff6

Please sign in to comment.