From a7389f008b1d15ed42b759e55403668572773c10 Mon Sep 17 00:00:00 2001 From: retoor Date: Thu, 28 Nov 2024 04:07:20 +0100 Subject: [PATCH] Changed string to int. --- src/ragnar/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ragnar/api.py b/src/ragnar/api.py index 83fcd01..2361929 100644 --- a/src/ragnar/api.py +++ b/src/ragnar/api.py @@ -68,8 +68,8 @@ class Api: "user_id": self.auth["user_id"], "token_id": self.auth["token_id"], "token_key": self.auth["token_key"], - "vote": str(vote), - "plat": 3, + "vote": vote, + "plat": 3 }, ) return json.loads(response.text)