(self, rawShape: str)
| 118 | datetime.now().strftime('%H:%M:%S.%f')[:-3])) |
| 119 | |
| 120 | def processRawShape(self, rawShape: str) -> list: |
| 121 | rawList = rawShape.split(' ') |
| 122 | floatShape = [list(map(float, p.split(','))) for p in rawList] |
| 123 | return floatShape |
| 124 | |
| 125 | def processEdge(self, eid: str, child: ET.Element): |
| 126 | if eid[0] == ':': |
no outgoing calls
no test coverage detected