From 3c4152b3d4a88d4cdfdd24d1378e253492ad310e Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Wed, 15 Mar 2023 16:09:38 +0000 Subject: [PATCH] Update commit hashes in `sync-typeshed.py` following latest typeshed sync --- misc/sync-typeshed.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/misc/sync-typeshed.py b/misc/sync-typeshed.py index 8fd38da3ffce..813ced68a1b3 100644 --- a/misc/sync-typeshed.py +++ b/misc/sync-typeshed.py @@ -179,10 +179,10 @@ def main() -> None: print("Created typeshed sync commit.") commits_to_cherry_pick = [ - "634224acb", # LiteralString reverts - "aa9e82eef", # sum reverts - "83ecc1717", # ctypes reverts - "9d84db24a", # ParamSpec for functools.wraps + "250e6fda7", # LiteralString reverts + "a633a7283", # sum reverts + "1ceeb1fdb", # ctypes reverts + "e1a82a2b8", # ParamSpec for functools.wraps ] for commit in commits_to_cherry_pick: subprocess.run(["git", "cherry-pick", commit], check=True)