Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/blame/commit/906c2e9cb9570492a021d20029fe4facf201ff05/libs/attr/_cmp.pyi You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/attr/_cmp.pyi

14 lines
357 B

from typing import Any, Callable, Optional, Type
_CompareWithType = Callable[[Any, Any], bool]
def cmp_using(
eq: Optional[_CompareWithType],
lt: Optional[_CompareWithType],
le: Optional[_CompareWithType],
gt: Optional[_CompareWithType],
ge: Optional[_CompareWithType],
require_same_type: bool,
class_name: str,
) -> Type: ...