Skip to content

Commit 24cdb0f

Browse files
committed
Format: use double quotes for consistency
1 parent 135227a commit 24cdb0f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/deepwork/hooks/evaluate_policies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def extract_promise_tags(text: str) -> set[str]:
4444
Set of policy names that have been promised/addressed
4545
"""
4646
# Match <promise>✓ Policy Name</promise> and extract the policy name
47-
pattern = r'<promise>✓\s*([^<]+)</promise>'
47+
pattern = r"<promise>✓\s*([^<]+)</promise>"
4848
matches = re.findall(pattern, text, re.IGNORECASE | re.DOTALL)
4949
return {m.strip() for m in matches}
5050

0 commit comments

Comments
 (0)