From fca69b63f9761b09aac90cb5f3eb0c3df0ab6a72 Mon Sep 17 00:00:00 2001 From: Devin Robison Date: Sun, 7 Jan 2024 15:15:48 -0700 Subject: [PATCH] Small merge changes --- morpheus/controllers/rss_controller.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/morpheus/controllers/rss_controller.py b/morpheus/controllers/rss_controller.py index d6454f0408..ea483ced29 100644 --- a/morpheus/controllers/rss_controller.py +++ b/morpheus/controllers/rss_controller.py @@ -308,9 +308,7 @@ def fetch_dataframes(self): entry_accumulator.append(entry) if self._batch_size > 0 and len(entry_accumulator) >= self._batch_size: - _df = pd.DataFrame(entry_accumulator) - _df.to_csv("debug.csv") - yield _df + yield pd.DataFrame(entry_accumulator) entry_accumulator.clear() self._previous_entries = current_entries