You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've noticed that the pd.DataFrame.append method, which has been marked as deprecated, is still being used in the downloader.py script at line 192. To maintain best practices and ensure forward compatibility with future versions of Pandas, I recommend updating the code to use the recommended pd.concat method instead.
Here's the updated code snippet that replaces the deprecated append method with concat, which also handles the index resetting correctly:
This modification ensures that the DataFrame is updated properly without relying on deprecated features, and it maintains the DataFrame index continuity.
Thank you for considering this update. I believe it will help in keeping the codebase modern and efficient.
The text was updated successfully, but these errors were encountered:
Hello Team,
I've noticed that the
pd.DataFrame.append
method, which has been marked as deprecated, is still being used in thedownloader.py
script at line 192. To maintain best practices and ensure forward compatibility with future versions of Pandas, I recommend updating the code to use the recommendedpd.concat
method instead.Here's the updated code snippet that replaces the deprecated
append
method withconcat
, which also handles the index resetting correctly:This modification ensures that the DataFrame is updated properly without relying on deprecated features, and it maintains the DataFrame index continuity.
Thank you for considering this update. I believe it will help in keeping the codebase modern and efficient.
The text was updated successfully, but these errors were encountered: