We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55274be commit 6c93e60Copy full SHA for 6c93e60
dash/testing/wait.py
@@ -15,7 +15,7 @@ def until(
15
poll=0.1,
16
msg="expected condition not met within timeout",
17
): # noqa: C0330
18
- res = None
+ res = wait_cond()
19
logger.debug(
20
"start wait.until with method, timeout, poll => %s %s %s",
21
wait_cond,
@@ -36,7 +36,7 @@ def until(
36
def until_not(
37
wait_cond, timeout, poll=0.1, msg="expected condition met within timeout"
38
39
- res = True
40
41
"start wait.until_not method, timeout, poll => %s %s %s",
42
0 commit comments