Skip to content

Commit

Permalink
tts: Use Any in arg type (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
myakove authored Apr 3, 2024
1 parent 2b43b82 commit fca2cc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyhelper_utils/general.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from typing import Any


def tts(ts: int | str) -> int:
def tts(ts: Any) -> int:
"""
Convert time string to seconds.
Expand Down

0 comments on commit fca2cc7

Please sign in to comment.