Skip to content

Commit

Permalink
fixing lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
robotrapta committed Feb 13, 2024
1 parent eb03a32 commit 59d4e61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/groundlight/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

from groundlight import Groundlight
from groundlight.client import ApiTokenError
from groundlight.config import API_TOKEN_MISSING_HELP_MESSAGE

cli_app = typer.Typer(
no_args_is_help=True,
Expand Down
3 changes: 2 additions & 1 deletion src/groundlight/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ def _verify_connectivity(self) -> None:
except Exception as e:
msg = (
f"Error connecting to Groundlight using API token '{self.api_token_prefix}...'"
f" at endpoint '{self.endpoint}'. Endpoint might be invalid or unreachable?"
f" at endpoint '{self.endpoint}'. Endpoint might be invalid or unreachable? "
f"Check https://status.groundlight.ai/ for service status."
)
raise GroundlightClientError(msg) from e

Expand Down

0 comments on commit 59d4e61

Please sign in to comment.