(time_obj: dt.time)
| 1614 | |
| 1615 | |
| 1616 | def _time_to_micros(time_obj: dt.time) -> int: |
| 1617 | seconds = time_obj.hour * 60 * 60 + 60 * time_obj.minute + time_obj.second |
| 1618 | return 1_000_000 * seconds + time_obj.microsecond |
no outgoing calls
no test coverage detected