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 1
1
from typing import TYPE_CHECKING
2
+
2
3
from labelbox .orm .db_object import DbObject
3
4
from labelbox .orm .model import Field , Relationship
4
5
5
6
if TYPE_CHECKING :
6
- from labelbox import Role , Project
7
+ from labelbox import Project , Role
7
8
8
9
9
10
class User (DbObject ):
@@ -16,7 +17,6 @@ class User(DbObject):
16
17
email (str)
17
18
name (str)
18
19
nickname (str)
19
- intercom_hash (str)
20
20
picture (str)
21
21
is_viewer (bool)
22
22
is_external_viewer (bool)
@@ -31,7 +31,6 @@ class User(DbObject):
31
31
email = Field .String ("email" )
32
32
name = Field .String ("nickname" )
33
33
nickname = Field .String ("name" )
34
- intercom_hash = Field .String ("intercom_hash" )
35
34
picture = Field .String ("picture" )
36
35
is_viewer = Field .Boolean ("is_viewer" )
37
36
is_external_user = Field .Boolean ("is_external_user" )
You can’t perform that action at this time.
0 commit comments