Skip to content

Commit

Permalink
Push to trigger CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ReinderVosDeWael committed Sep 29, 2023
1 parent 891e462 commit b70ce83
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nibabel/filename_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ def _stringify_path(filepath_or_buffer: FileSpec) -> str:
Adapted from:
https://github.com/pandas-dev/pandas/blob/325dd68/pandas/io/common.py#L131-L160
"""
return str(pathlib.Path(filepath_or_buffer).expanduser())
full_path = pathlib.Path(filepath_or_buffer).expanduser()
return str(full_path)


def types_filenames(
Expand Down

0 comments on commit b70ce83

Please sign in to comment.