Skip to content

Commit 98396a4

Browse files
committed
chore: apply pyink formatting
1 parent 5e7d557 commit 98396a4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/google/adk/evaluation/final_response_match_v1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def tokenize(self, text: str) -> list[str]:
109109
"""Tokenizes text using Unicode-aware word boundaries."""
110110
ascii_chars = sum(1 for c in text if ord(c) < 128)
111111
if ascii_chars > len(text) * 0.5:
112-
return re.findall(r'\w+', text.lower())
112+
return re.findall(r"\w+", text.lower())
113113
tokens = text.lower().split()
114114
if tokens:
115115
return tokens

0 commit comments

Comments
 (0)