Skip to content

Commit

Permalink
Small merge changes
Browse files Browse the repository at this point in the history
  • Loading branch information
drobison00 committed Jan 7, 2024
1 parent f866a90 commit fca69b6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions morpheus/controllers/rss_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fca69b6

Please sign in to comment.