Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
sakan811 committed May 19, 2024
2 parents d651710 + 2caf7e4 commit 7d2e245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daily_scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
df = thread_scrape.thread_scrape()

# Append the data to the all_data DataFrame
all_data = all_data.append(df, ignore_index=True)
all_data = pd.concat([all_data, df], ignore_index=True)

# Move to the next day
current_date += datetime.timedelta(days=1)
Expand Down

0 comments on commit 7d2e245

Please sign in to comment.