Skip to content

Commit

Permalink
Stay with CSV as default table format
Browse files Browse the repository at this point in the history
  • Loading branch information
hagenw committed Jun 12, 2024
1 parent 69dd809 commit 2965687
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion audformat/core/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ def save(
r"""Save database to disk.
Creates 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]``.
Existing files will be overwritten.
If ``update_other_formats`` is provided,
Expand Down
2 changes: 1 addition & 1 deletion audformat/core/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ def save(
self,
path: str,
*,
storage_format: str = define.TableStorageFormat.PARQUET,
storage_format: str = define.TableStorageFormat.CSV,
update_other_formats: bool = True,
):
r"""Save table data to disk.
Expand Down

0 comments on commit 2965687

Please sign in to comment.