Skip to content

Commit 9390782

Browse files
committed
chore(retry_until): Fix typing
1 parent adc8e9f commit 9390782

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libtmux/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def retry_until(
7272
fun: Callable,
7373
seconds: float = RETRY_TIMEOUT_SECONDS,
7474
*,
75-
interval: Optional[float] = RETRY_INTERVAL_SECONDS,
75+
interval: float = RETRY_INTERVAL_SECONDS,
7676
raises: Optional[bool] = True,
7777
) -> bool:
7878
"""

0 commit comments

Comments
 (0)