Cai
2026-08-09 ad23a6e38671aa619428720854cad361fe7a06af
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))