1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-10-05 15:04:40 -04:00

[compat] Ensure submodules are correctly wrapped

This commit is contained in:
pukkandan
2022-04-24 21:58:18 +05:30
parent 9cd080508d
commit 9196cbfe8b
6 changed files with 73 additions and 22 deletions

View File

@@ -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: