Skip to content

Commit ea5bb08

Browse files
Organize imports
1 parent 42f29f6 commit ea5bb08

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

src/groundlight/binary_labels.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
from enum import Enum
99
from typing import Union
1010

11-
from model import Detector, ImageQuery #, Label # temporarily commented out
11+
# from model import Detector, ImageQuery, Label # temporarily commented out
12+
from model import Detector, ImageQuery
1213

1314
logger = logging.getLogger(__name__)
1415

src/groundlight/internalapi.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212

1313
import requests
1414
from groundlight_openapi_client.api_client import ApiClient, ApiException
15-
from model import Detector, ImageQuery # , Source # temporarily commented out
15+
16+
# from model import Detector, ImageQuery, Source # temporarily commented out
17+
from model import Detector, ImageQuery
1618

1719
from groundlight.status_codes import is_ok
1820
from groundlight.version import get_version

0 commit comments

Comments
 (0)