Bug Description
Instead of iso-format timecode string, convert function returns millisecond integer.
Reproduction steps
>>> from mmif.utils import timeunit_helper as tuh
>>> tuh.convert(100, 'f', 's', 30)
3.3333333333333335
>>> tuh.convert(100, 'f', 'm', 30)
3333
>>> tuh.convert(100, 'f', 'i', 30)
3333
Expected behavior
>>> from mmif.utils import timeunit_helper as tuh
>>> tuh.convert(100, 'f', 'i', 30)
'00:00:03.333'
Log output
No response
Screenshots
No response
Additional context
No response