예제 #1
0
 def __init__(self, config: StudyConfig, children: TREE):
     FolderNode.__init__(self, config)
     self.children = children
예제 #2
0
 def __init__(self, config: StudyConfig, simulation: Simulation):
     FolderNode.__init__(self, config)
     self.simulation = simulation
예제 #3
0
 def __init__(self, config: StudyConfig, set: str):
     FolderNode.__init__(self, config)
     self.set = set
예제 #4
0
 def __init__(self, config: StudyConfig, area: str):
     FolderNode.__init__(self, config)
     self.area = area
예제 #5
0
 def get(self, url: Optional[List[str]] = None, depth: int = -1) -> JSON:
     concat_url = "/".join(url or [])
     return FolderNode.get(self, [concat_url])