(self, port: int, location: Point)
| 14 | class Smelter(Agent): |
| 15 | |
| 16 | def __init__(self, port: int, location: Point): |
| 17 | super().__init__(port, location) |
| 18 | self.powered = False |
| 19 | |
| 20 | def stat(self) -> Tuple[int, Counter, Counter]: |
| 21 | parts = self.send("STAT").split() |
nothing calls this directly
no outgoing calls
no test coverage detected