From ae4e4edc193e4ffd664fe3e7018d3596f5b53aaa Mon Sep 17 00:00:00 2001 From: SuveenE Date: Sun, 23 Feb 2025 10:51:14 -0800 Subject: [PATCH 1/2] Update author name --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 084e483..febf9ce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.4" description = "" authors = [ {name = "jinyang628",email = "chenjinyang4192@gmail.com"}, - {name = "suveenE",email = "suveen.ellawela@u.nus.edu"} + {name = "suveenE",email = "suveen.te1@gmail.com"} ] readme = "README.md" requires-python = ">=3.12, <4.0" From 712ab3fa9162d275c2a6cc35f1a80db67c5ad796 Mon Sep 17 00:00:00 2001 From: SuveenE Date: Sun, 23 Feb 2025 10:53:12 -0800 Subject: [PATCH 2/2] isort --- cmpal/utils/format.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cmpal/utils/format.py b/cmpal/utils/format.py index 14f6c1d..6e8324d 100644 --- a/cmpal/utils/format.py +++ b/cmpal/utils/format.py @@ -1,7 +1,6 @@ import re - def format_poetry_lock_diff(content: str) -> str: # Find all package blocks including additions, removals, and changes package_pattern = r"(?:^|\n)((?:[-+ ])\[\[package\]\].*?\n(?:[-+ ].*?\n)+)"