You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove unnecessary negative remainder check in timestamp conversion
Python's modulo operator always returns non-negative result when divisor
is positive, regardless of dividend sign. The check for remainder_ms < 0
is therefore unnecessary in both Python and Cython implementations.
Co-authored-by: Lorak-mmk <5958117+Lorak-mmk@users.noreply.github.com>
0 commit comments