Fix crash caused by variable initialise
This commit is contained in:
parent
a5d88a104c
commit
d0b93b454d
1 changed files with 3 additions and 4 deletions
5
bot.py
5
bot.py
|
@ -116,9 +116,9 @@ class Bot:
|
|||
"bing_api_endpoint is not provided, !bing command will not work"
|
||||
)
|
||||
|
||||
self.pandora_api_endpoint = pandora_api_endpoint
|
||||
# initialize pandora
|
||||
if pandora_api_endpoint is not None:
|
||||
self.pandora_api_endpoint = pandora_api_endpoint
|
||||
self.pandora = Pandora(
|
||||
api_endpoint=pandora_api_endpoint,
|
||||
clientSession=self.session
|
||||
|
@ -127,6 +127,7 @@ class Bot:
|
|||
self.pandora_api_model = "text-davinci-002-render-sha-mobile"
|
||||
else:
|
||||
self.pandora_api_model = pandora_api_model
|
||||
self.pandora_data = {}
|
||||
|
||||
self.bard_token = bard_token
|
||||
# initialize bard
|
||||
|
@ -155,8 +156,6 @@ class Bot:
|
|||
self.goon_prog = re.compile(r"^\s*!goon\s*.*$")
|
||||
self.new_prog = re.compile(r"^\s*!new\s*.*$")
|
||||
|
||||
self.pandora_data = {}
|
||||
|
||||
# close session
|
||||
def __del__(self) -> None:
|
||||
self.driver.disconnect()
|
||||
|
|
Loading…
Reference in a new issue