From 9196cbfe8bb7a6eb46037735b76f21963dfdc61a Mon Sep 17 00:00:00 2001 From: pukkandan Date: Sun, 24 Apr 2022 21:58:18 +0530 Subject: [compat] Ensure submodules are correctly wrapped --- yt_dlp/compat/re.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'yt_dlp/compat/re.py') 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: -- cgit v1.2.3