Skip to content

Commit 40d04a5

Browse files
authored
Revert sum literal changes on an ongoing basis (#13962)
Makes sure we continue to cherry pick #13961
1 parent 5319fa3 commit 40d04a5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

misc/sync-typeshed.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,10 @@ def main() -> None:
184184
subprocess.run(["git", "commit", "-m", message], check=True)
185185
print("Created typeshed sync commit.")
186186

187-
# Currently just LiteralString reverts
188-
commits_to_cherry_pick = ["780534b13722b7b0422178c049a1cbbf4ea4255b"]
187+
commits_to_cherry_pick = [
188+
"780534b13722b7b0422178c049a1cbbf4ea4255b", # LiteralString reverts
189+
"5319fa34a8004c1568bb6f032a07b8b14cc95bed", # sum reverts
190+
]
189191
for commit in commits_to_cherry_pick:
190192
subprocess.run(["git", "cherry-pick", commit], check=True)
191193
print(f"Cherry-picked {commit}.")

0 commit comments

Comments
 (0)