From fbf1a26559107cb200af6af63c134bb9f0c59ac4 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 24 Dec 2025 10:54:54 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- .../ifeval_instructions/instructions_utils.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/environments/eval_environments/ifeval_instructions/instructions_utils.py b/environments/eval_environments/ifeval_instructions/instructions_utils.py index 46f98999..8ee61655 100644 --- a/environments/eval_environments/ifeval_instructions/instructions_utils.py +++ b/environments/eval_environments/ifeval_instructions/instructions_utils.py @@ -1604,9 +1604,7 @@ LANGUAGE_CODES = { _ALPHABETS = "([A-Za-z])" _PREFIXES = "(Mr|St|Mrs|Ms|Dr)[.]" _SUFFIXES = "(Inc|Ltd|Jr|Sr|Co)" -_STARTERS = ( - r"(Mr|Mrs|Ms|Dr|Prof|Capt|Cpt|Lt|He\s|She\s|It\s|They\s|Their\s|Our\s|We\s|But\s|However\s|That\s|This\s|Wherever)" -) +_STARTERS = r"(Mr|Mrs|Ms|Dr|Prof|Capt|Cpt|Lt|He\s|She\s|It\s|They\s|Their\s|Our\s|We\s|But\s|However\s|That\s|This\s|Wherever)" _ACRONYMS = "([A-Z][.][A-Z][.](?:[A-Z][.])?)" _WEBSITES = "[.](com|net|org|io|gov|edu|me)" _DIGITS = "([0-9])"