From b298603111afdbe8e6c0140a951d35aced61653b Mon Sep 17 00:00:00 2001 From: alxboyle <29192438+alxboyle@users.noreply.github.com> Date: Tue, 5 May 2026 13:22:39 +1200 Subject: [PATCH] fix: correct dm auth login hint, drop nonexistent --url/--username flags --- src/datamasque_cli/client.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/datamasque_cli/client.py b/src/datamasque_cli/client.py index 3eef35a..cd331bb 100644 --- a/src/datamasque_cli/client.py +++ b/src/datamasque_cli/client.py @@ -54,10 +54,7 @@ def _resolve_profile(config: Config, profile_name: str | None) -> Profile: abort( f"Profile '{name}' is not configured.", code=ErrorCode.AUTH_REQUIRED, - hint=( - f"Run: dm auth login --profile {name} --url --username " - f"or set {ENV_URL}, {ENV_USERNAME}, and {ENV_PASSWORD}." - ), + hint=(f"Run: dm auth login --profile {name} or set {ENV_URL}, {ENV_USERNAME}, and {ENV_PASSWORD}."), ) return profile