cokelaer / bioservices

Access to Biological Web Services from Python.
http://bioservices.readthedocs.io
Other
279 stars 61 forks source link

Fix FutureWarning from Pandas #238

Closed GianArauz closed 2 years ago

GianArauz commented 2 years ago

The get_df() function from uniprot module uses the pandas method df.append(), which is deprecated and will be removed from pandas in the future.

I changed df.append() with pd.concat() to fix the FutureWarning.

cokelaer commented 2 years ago

@GianArauz thanks, I have merged your PR. Will be in next release of bioservices