Skip to content

Commit

Permalink
fix regex type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
parkervg committed Jul 19, 2024
1 parent f547446 commit 9ab6343
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blendsql/ingredients/builtin/map/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def run(
value_limit: Union[int, None] = None,
example_outputs: Optional[str] = None,
output_type: Optional[str] = None,
regex: Optional[str] = None,
regex: Optional[Callable[[int], str]] = None,
table_to_title: Optional[Dict[str, str]] = None,
**kwargs,
) -> Iterable[Any]:
Expand Down

0 comments on commit 9ab6343

Please sign in to comment.