Skip to content

Commit

Permalink
Fix line-too-long (C0301) issue by breaking the comment into two lines
Browse files Browse the repository at this point in the history
  • Loading branch information
AI Developer committed Dec 27, 2023
1 parent e440ff6 commit e91b514
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 @@ -145,7 +145,8 @@ def make_pull_request(sandbox: Sandbox, args: Dict[str, Any]) -> str:
return error

# Push the new branch to the origin server
git_push_proc = sandbox.process.start_and_wait(
# If there's an error, format and return it

f"git -C {REPO_DIRECTORY} push -u origin {new_branch_name}"
)
if git_push_proc.exit_code != 0:
Expand Down

0 comments on commit e91b514

Please sign in to comment.