(o: typing.Sequence)
| 18542 | |
| 18543 | |
| 18544 | def JM_TUPLE(o: typing.Sequence) -> tuple: |
| 18545 | return tuple(map(lambda x: round(x, 5) if abs(x) >= 1e-4 else 0, o)) |
| 18546 | |
| 18547 | |
| 18548 | def JM_TUPLE3(o: typing.Sequence) -> tuple: |
no outgoing calls
no test coverage detected
searching dependent graphs…