diff --git a/src/ragnar/api.py b/src/ragnar/api.py index fc8a215..e235c21 100644 --- a/src/ragnar/api.py +++ b/src/ragnar/api.py @@ -60,15 +60,15 @@ class Api: obj = json.loads(response.text) return obj - def post_rant_vote(self, id, vote): + def post_rant_vote(self, id_, vote): response = requests.post( - self.base_url + "devrant/rants/" + str(id) + "/vote", + self.base_url + "devrant/rants/" + str(id_) + "/vote", data={ "app": 3, "user_id": self.auth["user_id"], "token_id": self.auth["token_id"], "token_key": self.auth["token_key"], - "vote": vote, + "vote": str(vote), # "plat": 3, }, )