-
Notifications
You must be signed in to change notification settings - Fork 0
Ticket 7914 update script #241
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Co-authored-by: esmith1729 <esmith1729@users.noreply.github.com>
Co-authored-by: esmith1729 <esmith1729@users.noreply.github.com>
…ge master, and then push to origin
…t to y for Jenkins pipline to run
…mputingGroup/ibex_utils into ticket_7914_update_script
…ed into update_scripts.py Co-authored-by: dtmaclaren <danielmaclaren@users.noreply.github.com>
Co-authored-by: dtmaclaren <danielmaclaren@users.noreply.github.com>
Co-authored-by: dtmaclaren <danielmaclaren@users.noreply.github.com>
Co-authored-by: dtmaclaren <danielmaclaren@users.noreply.github.com>
…access to BaseTasks' prompt function Co-authored-by: dtmaclaren <danielmaclaren@users.noreply.github.com>
Co-authored-by: dtmaclaren <danielmaclaren@users.noreply.github.com>
Co-authored-by: dtmaclaren <danielmaclaren@users.noreply.github.com>
…asks instance in update_scripts.py Co-authored-by: dtmaclaren <danielmaclaren@users.noreply.github.com>
Co-authored-by: dtmaclaren <danielmaclaren@users.noreply.github.com>
Co-authored-by: dtmaclaren <danielmaclaren@users.noreply.github.com>
Co-authored-by: dtmaclaren <danielmaclaren@users.noreply.github.com>
Co-authored-by: dtmaclaren <danielmaclaren@users.noreply.github.com>
Co-authored-by: dtmaclaren <danielmaclaren@users.noreply.github.com>
…thod Co-authored-by: dtmaclaren <danielmaclaren@users.noreply.github.com>
Co-authored-by: dtmaclaren <danielmaclaren@users.noreply.github.com> Co-authored-by: zsoltkebel <zsoltkebel@users.noreply.github.com>
Co-authored-by: dtmaclaren <danielmaclaren@users.noreply.github.com> Co-authored-by: zsoltkebel <zsoltkebel@users.noreply.github.com>
Co-authored-by: dtmaclaren <danielmaclaren@users.noreply.github.com>
f""" | ||
Attempt an automatic merge of one branch | ||
{branch_to_merge_from} to another, {branch_to_merge_to} in {dir} | ||
""" |
Check notice
Code scanning / CodeQL
Statement has no effect Note
Show autofix suggestion
Hide autofix suggestion
Copilot Autofix
AI 17 days ago
To fix the issue, the multi-line f-string should be converted into a proper docstring for the automatic_merge_of_git_remote
method. This involves moving the string to immediately follow the def
line of the method. Since the string is intended to describe the method's purpose and parameters, it should be formatted as a standard docstring (triple-quoted string) without the f
prefix, as no variable interpolation is required.
-
Copy modified lines R118-R124
@@ -117,5 +117,9 @@ | ||
) -> None: | ||
f""" | ||
Attempt an automatic merge of one branch | ||
{branch_to_merge_from} to another, {branch_to_merge_to} in {dir} | ||
""" | ||
Attempt an automatic merge of one branch to another in a specified directory. | ||
|
||
Args: | ||
branch_to_merge_from (str): The name of the branch to merge from. | ||
branch_to_merge_to (str): The name of the branch to merge to. | ||
dir (str): The directory where the git repository is located. | ||
""" |
No description provided.