Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit b7775b8

Browse files
fix type annotation
1 parent 69afd94 commit b7775b8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bigframes/operations/strings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def extract(self, pat: str, flags: int = 0) -> df.DataFrame:
209209
if compiled.groups == 0:
210210
raise ValueError("No capture groups in 'pat'")
211211

212-
results: dict[Hashable, T] = {}
212+
results: dict[Hashable, series.Series] = {}
213213
for i in range(compiled.groups):
214214
labels = [
215215
label

0 commit comments

Comments
 (0)