Skip to content

Commit

Permalink
Defaut values on missing keyword arguments of ingest_h5ad.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnMoutafis committed Jun 13, 2024
1 parent 05d0dc5 commit 333132f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tiledb/cloud/soma/ingest.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,9 @@ def ingest_h5ad(
output_uri: str,
input_uri: str,
measurement_name: str,
extra_tiledb_config: Optional[Dict[str, object]],
platform_config: Optional[Dict[str, object]],
ingest_mode: str,
extra_tiledb_config: Optional[Dict[str, object]] = None,
platform_config: Optional[Dict[str, object]] = None,
ingest_mode: str = "write",
logging_level: int = logging.INFO,
dry_run: bool = False,
) -> None:
Expand Down

0 comments on commit 333132f

Please sign in to comment.