Skip to content

Commit 5fdaeb4

Browse files
author
Matt Sokoloff
committed
move logger
1 parent aeff029 commit 5fdaeb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

labelbox/schema/project.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
from labelbox.orm.model import Entity, Field, Relationship
1919
from labelbox.pagination import PaginatedCollection
2020

21-
logger = logging.getLogger(__name__)
22-
2321
try:
2422
datetime.fromisoformat # type: ignore[attr-defined]
2523
except AttributeError:
@@ -31,6 +29,8 @@
3129
except ImportError:
3230
pass
3331

32+
logger = logging.getLogger(__name__)
33+
3434

3535
class Project(DbObject, Updateable, Deletable):
3636
""" A Project is a container that includes a labeling frontend, an ontology,

0 commit comments

Comments
 (0)