From 43047ac02b696fbcbe28be01d5515a27d70fb1de Mon Sep 17 00:00:00 2001 From: jochen Date: Tue, 30 Apr 2024 15:41:48 +0200 Subject: [PATCH] make sure we update the user --- testingbotclient.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testingbotclient.py b/testingbotclient.py index 4119aea..4ffe800 100644 --- a/testingbotclient.py +++ b/testingbotclient.py @@ -8,7 +8,7 @@ from requests.auth import HTTPBasicAuth import hashlib -__version__ = '0.0.9' +__version__ = '0.1.0' class TestingBotException(Exception): def __init__(self, *args, **kwargs): @@ -218,5 +218,5 @@ def get_user_information(self): def update_user_information(self, newUser): """Update current user information""" url = '/user' - info = self.client.put(url) + info = self.client.put(url, newUser) return info \ No newline at end of file