diff --git a/tqdm/std.py b/tqdm/std.py index 0312ada9..4ead1311 100644 --- a/tqdm/std.py +++ b/tqdm/std.py @@ -1202,8 +1202,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