Skip to content

Commit

Permalink
Fix docstring of Database.load()
Browse files Browse the repository at this point in the history
  • Loading branch information
hagenw committed Jun 18, 2024
1 parent c9b5760 commit 589da4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions audformat/core/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -1383,7 +1383,7 @@ def load(
r"""Load database from disk.
Expects a header ``<root>/<name>.yaml``
and for every table a file ``<root>/<name>.<table-id>.[csv|pkl]``
and for every table a file ``<root>/<name>.<table-id>.[csv|parquet|pkl]``
Media files should be located under ``root``.
Args:
Expand All @@ -1409,7 +1409,7 @@ def load(
Raises:
FileNotFoundError: if the database header file cannot be found
under ``root``
RuntimeError: if a CSV table file is newer
RuntimeError: if a CSV or PARQUET table file is newer
than the corresponding PKL file
"""
Expand Down

0 comments on commit 589da4b

Please sign in to comment.