From 7fec2661fc239ab0112ed571189c3d452d47554e Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 18 Mar 2025 18:18:39 -0700 Subject: [PATCH] style: Standardize string quotes in update-history.py --- scripts/update-history.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/update-history.py b/scripts/update-history.py index 6bb6c8ace..0066eeb01 100755 --- a/scripts/update-history.py +++ b/scripts/update-history.py @@ -13,9 +13,9 @@ from aider import __version__ def get_latest_version_from_history(): with open("HISTORY.md", "r") as f: history_content = f.read() - + # Find most recent version header - match = re.search(r'### Aider v(\d+\.\d+\.\d+)', history_content) + match = re.search(r"### Aider v(\d+\.\d+\.\d+)", history_content) if not match: raise ValueError("Could not find version header in HISTORY.md") return match.group(1)