ytdl-sub/src/ytdl_sub/utils/subtitles.py
Jesse Bannon f9318b9d07
[BUGFIX] Handle truncating file names if too long (#524)
* [BUGFIX] Handle truncating file names if too long

* always import os

* test fix

* fix for windows

* lint
2023-03-10 07:20:43 -08:00

3 lines
85 B
Python

from typing import Set
SUBTITLE_EXTENSIONS: Set[str] = {"srt", "vtt", "ass", "lrc"}