Maybe this time™
This commit is contained in:
parent
5d924309b9
commit
2c3aa46107
1 changed files with 2 additions and 2 deletions
|
|
@ -29,10 +29,10 @@ class Connector():
|
|||
)
|
||||
|
||||
def get_reply_bank(self):
|
||||
return json.loads(self.dbconn.json().get('reply_bank').decode("utf-8"))
|
||||
return self.dbconn.json().get('reply_bank')
|
||||
|
||||
def get_victims(self):
|
||||
return json.loads(self.dbconn.json().get('reply_bank').decode("utf-8")).victims
|
||||
return self.dbconn.json().get('reply_bank').victims
|
||||
|
||||
def get_bearer(self):
|
||||
return self.dbconn.hget("api", "bearer").decode("utf-8")
|
||||
|
|
|
|||
Loading…
Reference in a new issue