(s: bytes)
| 64 | |
| 65 | |
| 66 | def _to_list_of_ints(s: bytes) -> list[int]: |
| 67 | s = s.replace(b',', b' ') |
| 68 | return [_to_int(val) for val in s.split()] |
| 69 | |
| 70 | |
| 71 | def _to_list_of_floats(s: bytes | str) -> list[float]: |
nothing calls this directly
no test coverage detected
searching dependent graphs…