def __init__()

in src/alerter/rabbitmq_admin.py [0:0]


    def __init__(self, host: str, port: Optional[int], vhost:str, ssl:bool, credentials: requests.auth.AuthBase):
        self.host = host
        if port is None:
            self.port = 15672
        else:
            self.port = port
        self.vhost = vhost
        self.ssl = ssl

        self.credentials = credentials