mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
[BE][CI] bump ruff
to 0.9.0: string quote styles (#144569)
Reference: https://docs.astral.sh/ruff/formatter/#f-string-formatting - Change the outer quotes to double quotes for nested f-strings ```diff - f'{", ".join(args)}' + f"{', '.join(args)}" ``` - Change the inner quotes to double quotes for triple f-strings ```diff string = """ - {', '.join(args)} + {", ".join(args)} """ ``` - Join implicitly concatenated strings ```diff - string = "short string " "short string " f"{var}" + string = f"short string short string {var}" ``` Pull Request resolved: https://github.com/pytorch/pytorch/pull/144569 Approved by: https://github.com/Skylion007 ghstack dependencies: #146509
This commit is contained in:
committed by
PyTorch MergeBot
parent
52f6d4aa30
commit
754fb834db
@ -33,10 +33,10 @@ def gh_fetch_url_and_headers(
|
||||
):
|
||||
print(
|
||||
f"""Rate limit exceeded:
|
||||
Used: {err.headers['X-RateLimit-Used']}
|
||||
Limit: {err.headers['X-RateLimit-Limit']}
|
||||
Remaining: {err.headers['X-RateLimit-Remaining']}
|
||||
Resets at: {err.headers['x-RateLimit-Reset']}"""
|
||||
Used: {err.headers["X-RateLimit-Used"]}
|
||||
Limit: {err.headers["X-RateLimit-Limit"]}
|
||||
Remaining: {err.headers["X-RateLimit-Remaining"]}
|
||||
Resets at: {err.headers["x-RateLimit-Reset"]}"""
|
||||
)
|
||||
raise
|
||||
|
||||
|
Reference in New Issue
Block a user