def __init__()

in wadebug/wa_actions/mysql_utils.py [0:0]


    def __init__(self, host="", port=0, user="", password=""):
        if host and port and user and password:
            self.db_host = host
            self.db_port = int(port)
            self.db_user = user
            self.db_password = password
        else:
            raise ValueError("Wrong input parameters")