File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed
bioimageio/core/resource_io Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change 8
8
9
9
from bioimageio .spec .model import raw_nodes as model_raw_nodes
10
10
from bioimageio .spec .rdf import raw_nodes as rdf_raw_nodes
11
+ from bioimageio .spec .collection import raw_nodes as collection_raw_nodes
11
12
from bioimageio .spec .shared import raw_nodes
12
13
13
14
@@ -82,22 +83,17 @@ class RDF(rdf_raw_nodes.RDF, Node):
82
83
83
84
84
85
@dataclass
85
- class CollectionEntry (Node , rdf_raw_nodes .CollectionEntry ):
86
+ class CollectionEntry (Node , collection_raw_nodes .CollectionEntry ):
86
87
source : URI = missing
87
88
88
89
89
- @dataclass
90
- class ModelCollectionEntry (CollectionEntry , rdf_raw_nodes .ModelCollectionEntry ):
91
- download_url : URI = missing
92
-
93
-
94
90
@dataclass
95
91
class ModelParent (Node , model_raw_nodes .ModelParent ):
96
92
pass
97
93
98
94
99
95
@dataclass
100
- class Collection (RDF , rdf_raw_nodes .Collection ):
96
+ class Collection (RDF , collection_raw_nodes .Collection ):
101
97
pass
102
98
103
99
You can’t perform that action at this time.
0 commit comments