Skip to content

Commit

Permalink
chore: Set workspace to None as default for dataset configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
frascuchon committed Mar 9, 2023
1 parent a97b7d0 commit 3a91bbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/argilla/datasets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
__all__ = [TextClassificationSettings, TokenClassificationSettings, Settings]


def configure_dataset(name: str, settings: Settings, workspace: Optional[str]) -> None:
def configure_dataset(name: str, settings: Settings, workspace: Optional[str] = None) -> None:
"""
Configures a dataset with a set of configured labels. If dataset does not
exist yet, an empty dataset will be created.
Expand Down

0 comments on commit 3a91bbc

Please sign in to comment.