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/18f59cf0f93412a94e8ec901d34d31eab6d55f9c/libs/rich/_stack.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/rich/_stack.py

17 lines
351 B

from typing import List, TypeVar
T = TypeVar("T")
class Stack(List[T]):
"""A small shim over builtin list."""
@property
def top(self) -> T:
"""Get top of stack."""
return self[-1]
def push(self, item: T) -> None:
"""Push an item on to the stack (append in stack nomenclature)."""
self.append(item)