diff options
Diffstat (limited to 'yt_dlp/webvtt.py')
-rw-r--r-- | yt_dlp/webvtt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/webvtt.py b/yt_dlp/webvtt.py index b8974f883..cc2353436 100644 --- a/yt_dlp/webvtt.py +++ b/yt_dlp/webvtt.py @@ -9,8 +9,8 @@ in RFC 8216 ยง3.5 <https://tools.ietf.org/html/rfc8216#section-3.5>. """ import io +import re -from .compat import re from .utils import int_or_none, timetuple_from_msec |