Skip to content

Remove intercom_hash from User #1898

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions libs/labelbox/src/labelbox/schema/user.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
from typing import TYPE_CHECKING

from labelbox.orm.db_object import DbObject
from labelbox.orm.model import Field, Relationship

if TYPE_CHECKING:
from labelbox import Role, Project
from labelbox import Project, Role


class User(DbObject):
Expand All @@ -16,7 +17,6 @@ class User(DbObject):
email (str)
name (str)
nickname (str)
intercom_hash (str)
picture (str)
is_viewer (bool)
is_external_viewer (bool)
Expand All @@ -31,7 +31,6 @@ class User(DbObject):
email = Field.String("email")
name = Field.String("nickname")
nickname = Field.String("name")
intercom_hash = Field.String("intercom_hash")
picture = Field.String("picture")
is_viewer = Field.Boolean("is_viewer")
is_external_user = Field.Boolean("is_external_user")
Expand Down
Loading