diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-04-24 21:58:18 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-04-26 05:43:20 +0530 |
commit | 9196cbfe8bb7a6eb46037735b76f21963dfdc61a (patch) | |
tree | 050c5df59f73c0dc15e99ae6388595ea6e00986f /yt_dlp/compat/re.py | |
parent | 9cd080508db2daf625994f9aef29790f4bca7996 (diff) | |
download | hypervideo-pre-9196cbfe8bb7a6eb46037735b76f21963dfdc61a.tar.lz hypervideo-pre-9196cbfe8bb7a6eb46037735b76f21963dfdc61a.tar.xz hypervideo-pre-9196cbfe8bb7a6eb46037735b76f21963dfdc61a.zip |
[compat] Ensure submodules are correctly wrapped
Diffstat (limited to 'yt_dlp/compat/re.py')
-rw-r--r-- | yt_dlp/compat/re.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/yt_dlp/compat/re.py b/yt_dlp/compat/re.py index e8a6fabbd..d4532950a 100644 --- a/yt_dlp/compat/re.py +++ b/yt_dlp/compat/re.py @@ -2,6 +2,11 @@ from re import * # F403 +from .compat_utils import passthrough_module + +passthrough_module(__name__, 're') +del passthrough_module + try: Pattern # >= 3.7 except NameError: |