MB-X Bilibili Pipeline
10 days ago 651102a5aa9b6a19cd6491b9c6108f6f03d50ff2
1
2
3
4
5
6
7
8
9
10
11
12
"""Tests for the exact-BVID authenticated extension ingress.
 
Full project discovery imports this directory as ``bili_authenticated_extension``.
Extend that package path to the product directory so it cannot shadow the
actual implementation modules.
"""
 
from pathlib import Path
 
_product_package = Path(__file__).resolve().parents[2] / "bili_authenticated_extension"
if str(_product_package) not in __path__:
    __path__.append(str(_product_package))