From c226e66982e24fe2291d5299d8a8fc16368661c0 Mon Sep 17 00:00:00 2001 From: Aniket Patil <128228805+AniketP04@users.noreply.github.com> Date: Mon, 23 Oct 2023 19:11:11 +0530 Subject: [PATCH] Update timeout_iterator.py --- iterators/timeout_iterator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iterators/timeout_iterator.py b/iterators/timeout_iterator.py index d6f760e4b..38d10831c 100644 --- a/iterators/timeout_iterator.py +++ b/iterators/timeout_iterator.py @@ -61,7 +61,7 @@ def __next__(self): yield the result from iterator if timeout > 0: yield data if available. - otherwise yield sentinal + otherwise yield sentinel """ if self._done: raise StopIteration