Skip to content

Commit

Permalink
Add version to printout
Browse files Browse the repository at this point in the history
  • Loading branch information
iamtrask committed Aug 4, 2024
1 parent b0ff137 commit 7946ca6
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions packages/syft/src/syft/client/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ class Datasite(SyftObject):

name: str
host_or_ip: str
version: str
protocol: str
admin_email: str
website: str
Expand All @@ -202,32 +203,35 @@ class Datasite(SyftObject):
__attr_searchable__ = [
"name",
"host_or_ip",
"protocol",
"version",
"port",
"admin_email",
"website",
"slack",
"slack_channel",
"protocol",
]
__attr_unique__ = [
"name",
"host_or_ip",
"protocol",
"version",
"port",
"admin_email",
"website",
"slack",
"slack_channel",
"protocol",
]
__repr_attrs__ = [
"name",
"host_or_ip",
"protocol",
"version",
"port",
"admin_email",
"website",
"slack",
"slack_channel",
"protocol",
]
__table_sort_attr__ = "name"

Expand Down

0 comments on commit 7946ca6

Please sign in to comment.