File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
libs/labelbox/src/labelbox/schema Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 11from typing import TYPE_CHECKING
2+
23from labelbox .orm .db_object import DbObject
34from labelbox .orm .model import Field , Relationship
45
56if TYPE_CHECKING :
6- from labelbox import Role , Project
7+ from labelbox import Project , Role
78
89
910class User (DbObject ):
@@ -16,7 +17,6 @@ class User(DbObject):
1617 email (str)
1718 name (str)
1819 nickname (str)
19- intercom_hash (str)
2020 picture (str)
2121 is_viewer (bool)
2222 is_external_viewer (bool)
@@ -31,7 +31,6 @@ class User(DbObject):
3131 email = Field .String ("email" )
3232 name = Field .String ("nickname" )
3333 nickname = Field .String ("name" )
34- intercom_hash = Field .String ("intercom_hash" )
3534 picture = Field .String ("picture" )
3635 is_viewer = Field .Boolean ("is_viewer" )
3736 is_external_user = Field .Boolean ("is_external_user" )
You can’t perform that action at this time.
0 commit comments