Fix broken URLs (#152237)

Pull Request resolved: https://github.com/pytorch/pytorch/pull/152237
Approved by: https://github.com/huydhn, https://github.com/malfet
This commit is contained in:
Anthony Shoumikhin
2025-04-27 09:56:42 +00:00
committed by PyTorch MergeBot
parent cbcc03c2ad
commit e2f9759bd0
115 changed files with 176 additions and 181 deletions

View File

@ -128,7 +128,7 @@ def gh_fetch_json_dict(
def gh_graphql(query: str, **kwargs: Any) -> dict[str, Any]:
rc = gh_fetch_url(
"https://api.github.com/graphql",
"https://api.github.com/graphql", # @lint-ignore
data={"query": query, "variables": kwargs},
reader=json.load,
)