Skip to content

Commit 679c2dd

Browse files
author
Matt Sokoloff
committed
reorder imports
1 parent 543c534 commit 679c2dd

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

labelbox/schema/asset_attachment.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from enum import Enum
2+
23
from labelbox.orm.db_object import DbObject
34
from labelbox.orm.model import Field
45

labelbox/schema/data_row.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
import logging
2+
13
from labelbox.orm import query
24
from labelbox.orm.db_object import DbObject, Updateable, BulkDeletable
35
from labelbox.orm.model import Entity, Field, Relationship
46
from labelbox.schema.asset_attachment import AssetAttachment
57

6-
import logging
8+
79

810
logger = logging.getLogger(__name__)
911

tests/integration/test_asset_metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
from labelbox.schema.asset_attachment import AssetAttachment
21
import pytest
32

3+
from labelbox.schema.asset_attachment import AssetAttachment
44
from labelbox import AssetMetadata
55
from labelbox.exceptions import InvalidQueryError
66

0 commit comments

Comments
 (0)