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
Current line : return pd.concat(dfs, self._concat_axis)
According to new pandas update it says we need to specify any Series or data-frame objects with the keyword 'objs' as a parameter
Update to : return pd.concat(objs=dfs, axis=self._concat_axis)
The text was updated successfully, but these errors were encountered:
Current line : return pd.concat(dfs, self._concat_axis)
According to new pandas update it says we need to specify any Series or data-frame objects with the keyword 'objs' as a parameter
Update to : return pd.concat(objs=dfs, axis=self._concat_axis)
The text was updated successfully, but these errors were encountered: