Skip to content

Commit

Permalink
Revert sum literal changes on an ongoing basis (#13962)
Browse files Browse the repository at this point in the history
Makes sure we continue to cherry pick
#13961
  • Loading branch information
hauntsaninja committed Oct 29, 2022
1 parent 5319fa3 commit 40d04a5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions misc/sync-typeshed.py
Expand Up @@ -184,8 +184,10 @@ def main() -> None:
subprocess.run(["git", "commit", "-m", message], check=True)
print("Created typeshed sync commit.")

# Currently just LiteralString reverts
commits_to_cherry_pick = ["780534b13722b7b0422178c049a1cbbf4ea4255b"]
commits_to_cherry_pick = [
"780534b13722b7b0422178c049a1cbbf4ea4255b", # LiteralString reverts
"5319fa34a8004c1568bb6f032a07b8b14cc95bed", # sum reverts
]
for commit in commits_to_cherry_pick:
subprocess.run(["git", "cherry-pick", commit], check=True)
print(f"Cherry-picked {commit}.")
Expand Down

0 comments on commit 40d04a5

Please sign in to comment.