Skip to content

Commit

Permalink
Rephrase docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
hagenw committed Dec 5, 2023
1 parent c05d895 commit 7867165
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions audeer/core/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -859,17 +859,17 @@ def move(
dst_path: destination file/folder path
Raises:
OSError: if ``dst_path`` is a non-empty folder,
and different from ``src_path``
and ``src_path`` is also a folder
OSError: if ``dst_path`` is an empty folder
and different from ``src_path``
and ``src_path`` is also a folder
(raised only under Windows)
OSError: if ``src_path`` is a file
and ``dst_path`` is an existing folder
OSError: if ``src_path`` is a folder
and ``dst_path`` is an existing file
OSError: if ``dst_path`` is a non-empty folder,
different from ``src_path``,
and ``src_path`` is also a folder
OSError: if ``dst_path`` is an empty folder,
different from ``src_path``
and ``src_path`` is also a folder
(raised only under Windows)
Examples:
>>> path = mkdir('folder')
Expand Down

0 comments on commit 7867165

Please sign in to comment.