Skip to content

Commit

Permalink
fix RemoteBase
Browse files Browse the repository at this point in the history
  • Loading branch information
FynnBe committed May 16, 2024
1 parent 2310efe commit 1776b86
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 0 additions & 2 deletions bioimageio_collection_backoffice/remote_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
class RemoteBase:
client: Client
"""Client to connect to remote storage"""
id: str
"""resource identifier"""

@property
@abstractmethod
Expand Down
5 changes: 5 additions & 0 deletions bioimageio_collection_backoffice/remote_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ class RemoteCollection(RemoteBase):
client: Client
"""Client to connect to remote storage"""

@property
def folder(self) -> str:
"""collection folder is given by the `client` prefix"""
return ""

partners_json = "partners.json"

@property
Expand Down

0 comments on commit 1776b86

Please sign in to comment.