(s)
| 129 | |
| 130 | |
| 131 | def _convert_second_fraction(s) -> int: |
| 132 | if not s: |
| 133 | return 0 |
| 134 | # Pad zeros to ensure the fraction length in microseconds |
| 135 | s = s.ljust(6, "0") |
| 136 | return int(s[:6]) |
| 137 | |
| 138 | |
| 139 | encoders = { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…