diff options
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: |