<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">"""Time Utilities."""
# flake8: noqa


__all__ = ('maybe_s_to_ms',)


def maybe_s_to_ms(v):
    # type: (Optional[Union[int, float]]) -&gt; int
    """Convert seconds to milliseconds, but return None for None."""
    return int(float(v) * 1000.0) if v is not None else v
</pre></body></html>