From 40ac6d58c2f65366b66021f15da16e5a6020b33f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Miquel?= Date: Tue, 10 Mar 2026 15:11:14 +0100 Subject: [PATCH] Remove `:' from group names. --- annotating_by_label.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/annotating_by_label.py b/annotating_by_label.py index 808f792..6f4be3b 100644 --- a/annotating_by_label.py +++ b/annotating_by_label.py @@ -115,7 +115,7 @@ def main(): os.makedirs(bgnot_dir, exist_ok=True) for line in lines: - labels = [l.strip() for l in line.split(',') if l.strip()] + labels = [l.replace(":", "").strip() for l in line.split(',') if l.strip()] if not labels: continue