Skip to content

Commit

Permalink
j'écris sans style
Browse files Browse the repository at this point in the history
  • Loading branch information
tnm committed Dec 20, 2024
1 parent 093fb67 commit 77b1fcf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion supersonic/core/pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,11 @@ def create_pr_from_file(
try:
content = Path(local_file_path).read_text()
return self.create_pr(
repo=repo, changes={upstream_path: content}, title=title, draft=draft, **kwargs
repo=repo,
changes={upstream_path: content},
title=title,
draft=draft,
**kwargs,
)
except Exception as e:
raise GitHubError(f"Failed to update file: {e}")
Expand Down

0 comments on commit 77b1fcf

Please sign in to comment.