diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-08-19 09:49:48 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-08-19 09:49:52 +0530 |
commit | 6657e7834f10a7f403e2a43ac549bbcc2136489e (patch) | |
tree | c407e8c15c37422f76ac6c0b8d55142b6e847577 | |
parent | 5dceb21df6e295b8f398f3b78ddac80091cb23ee (diff) |
Use `compat.re`
-rw-r--r-- | test/test_jsinterp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_jsinterp.py b/test/test_jsinterp.py index 863e52458..1a8dc6afc 100644 --- a/test/test_jsinterp.py +++ b/test/test_jsinterp.py @@ -8,8 +8,8 @@ import unittest sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) import math -import re +from yt_dlp.compat import re from yt_dlp.jsinterp import JS_Undefined, JSInterpreter |