Skip to content

User Management

zenml.cli.user_management

Functionality to administer users of the ZenML CLI and server.

warn_unsupported_non_default_project()

Warning for unsupported non-default project.

Source code in zenml/cli/user_management.py
def warn_unsupported_non_default_project() -> None:
    """Warning for unsupported non-default project."""
    cli_utils.warning(
        "Currently the concept of `project` is not supported "
        "within the Dashboard. The Project functionality will be "
        "completed in the coming weeks. For the time being it "
        "is recommended to stay within the `default` project."
    )