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
/opt/conda/lib/python3.9/site-packages/fmriprep/interfaces/confounds.py:558: FutureWarning: Index.ravel returning ndarray is deprecated; in a future version this will return a view on self.
colnames = data.columns.ravel().tolist()
The text was updated successfully, but these errors were encountered:
## Changes proposed in this pull request
We had a use of deprecated `Index.ravel()` functionality. It turns out
this was to do the same thing as `DataFrame.rename(columns=mapper)`, so
I just replaced that.
Closes#2904.
The text was updated successfully, but these errors were encountered: