Skip to content

Commit

Permalink
Store tables per default as parquet files (#452)
Browse files Browse the repository at this point in the history
  • Loading branch information
hagenw committed Jul 12, 2024
1 parent e3fd511 commit 0f0b069
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 @@ -970,7 +970,7 @@ def save(
*,
name: str = "db",
indent: int = 2,
storage_format: str = define.TableStorageFormat.CSV,
storage_format: str = define.TableStorageFormat.PARQUET,
update_other_formats: bool = True,
header_only: bool = False,
num_workers: typing.Optional[int] = 1,
Expand Down
2 changes: 1 addition & 1 deletion audformat/core/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ def save(
self,
path: str,
*,
storage_format: str = define.TableStorageFormat.CSV,
storage_format: str = define.TableStorageFormat.PARQUET,
update_other_formats: bool = True,
):
r"""Save table data to disk.
Expand Down

0 comments on commit 0f0b069

Please sign in to comment.