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

11 lines
394 B

from typing import List, Optional
from . import rdataset, rdatatype
class RRset(rdataset.Rdataset):
def __init__(self, name, rdclass : int , rdtype : int, covers=rdatatype.NONE,
deleting : Optional[int] =None) -> None:
self.name = name
self.deleting = deleting
def from_text(name : str, ttl : int, rdclass : str, rdtype : str, *text_rdatas : str):
...