diff --git a/src/lightning/data/streaming/data_processor.py b/src/lightning/data/streaming/data_processor.py index 8431cc70845e8..2fe7f7411bb86 100644 --- a/src/lightning/data/streaming/data_processor.py +++ b/src/lightning/data/streaming/data_processor.py @@ -8,7 +8,6 @@ import types from abc import abstractmethod from dataclasses import dataclass -from datetime import datetime from multiprocessing import Process, Queue from queue import Empty from time import sleep, time @@ -869,7 +868,6 @@ def run(self, data_recipe: DataRecipe) -> None: self.workers_tracker[index] = counter new_total = sum(self.workers_tracker.values()) - pbar.set_postfix({"time": datetime.now().strftime("%H:%M:%S.%f")}) pbar.update(new_total - current_total) current_total = new_total