Skip to content

Commit

Permalink
no_implicit_optional
Browse files Browse the repository at this point in the history
  • Loading branch information
parkervg committed Jul 5, 2024
1 parent e3f2668 commit 430c044
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blendsql/ingredients/ingredient.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ def unpack_default_kwargs(self, **kwargs):

def __call__(
self,
question: str = None,
context: str = None,
question: Optional[str] = None,
context: Optional[str] = None,
regex: Optional[Callable] = None,
options: Optional[Union[list, str]] = None,
*args,
Expand Down

0 comments on commit 430c044

Please sign in to comment.