Skip to content

Commit

Permalink
Update helpers.py (#417)
Browse files Browse the repository at this point in the history
  • Loading branch information
kristinaNikolaevaa authored Sep 5, 2024
1 parent ed719a0 commit 51179f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def wait_condition(
max_tries: tp.Optional[int] = None,
check_success: tp.Callable[[T], bool] = polling2.is_truthy,
step_function: tp.Callable[[float], float] = polling2.step_constant,
ignore_exceptions: tp.Tuple[Exception, ...] = (),
ignore_exceptions: tp.Tuple[Exception, ...] = (KeyError,),
poll_forever: bool = False,
collect_values: tp.Optional[Queue] = None,
log: int = logging.NOTSET,
Expand Down

0 comments on commit 51179f9

Please sign in to comment.