(
self, name: str, controller_address: str = "http://localhost:5000/api", *_, **__,
)
| 17 | |
| 18 | class TaskClient: |
| 19 | def __init__( |
| 20 | self, name: str, controller_address: str = "http://localhost:5000/api", *_, **__, |
| 21 | ) -> None: |
| 22 | self.name = name |
| 23 | self.controller_address = controller_address |
| 24 | print("TaskClient created: {} ({})".format(name, controller_address)) |
| 25 | |
| 26 | def get_indices(self) -> List[SampleIndex]: |
| 27 | result = requests.get( |
nothing calls this directly
no outgoing calls
no test coverage detected