mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 03:10:38 +00:00
15 lines
210 B
Python
15 lines
210 B
Python
|
# flake8: noqa: F405
|
||
|
|
||
|
from re import * # F403
|
||
|
|
||
|
try:
|
||
|
Pattern # >= 3.7
|
||
|
except NameError:
|
||
|
Pattern = type(compile(''))
|
||
|
|
||
|
|
||
|
try:
|
||
|
Match # >= 3.7
|
||
|
except NameError:
|
||
|
Match = type(compile('').match(''))
|