diff --git a/pyproject.toml b/pyproject.toml index 9056e0bd..2e31e855 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,7 @@ toml-sort = "^0.23.0" types-requests = "^2.28.11.17" [tool.poetry.scripts] -glcli = "groundlight.client:glcli" +groundlight = "groundlight.client:glcli" # https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html [tool.black] diff --git a/src/groundlight/client.py b/src/groundlight/client.py index caf636d3..7e698ad1 100644 --- a/src/groundlight/client.py +++ b/src/groundlight/client.py @@ -3,8 +3,8 @@ import time from io import BufferedReader, BytesIO from typing import Optional, Union - import fire + from model import Detector, ImageQuery, PaginatedDetectorList, PaginatedImageQueryList from openapi_client import Configuration from openapi_client.api.detectors_api import DetectorsApi