From a1fbe3af6aff9a631311c240526d364c232116b9 Mon Sep 17 00:00:00 2001 From: Sourcery AI <> Date: Fri, 24 Sep 2021 15:04:29 +0000 Subject: [PATCH] 'Refactored by Sourcery' --- tqdm/std.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tqdm/std.py b/tqdm/std.py index 880d97a3..1fc14b63 100644 --- a/tqdm/std.py +++ b/tqdm/std.py @@ -1165,8 +1165,7 @@ class tqdm(Comparable): # If the bar is disabled, then just walk the iterable # (note: keep this check outside the loop for performance) if self.disable: - for obj in iterable: - yield obj + yield from iterable return mininterval = self.mininterval