We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0d63f6 commit 43047acCopy full SHA for 43047ac
testingbotclient.py
@@ -8,7 +8,7 @@
8
from requests.auth import HTTPBasicAuth
9
import hashlib
10
11
-__version__ = '0.0.9'
+__version__ = '0.1.0'
12
13
class TestingBotException(Exception):
14
def __init__(self, *args, **kwargs):
@@ -218,5 +218,5 @@ def get_user_information(self):
218
def update_user_information(self, newUser):
219
"""Update current user information"""
220
url = '/user'
221
- info = self.client.put(url)
+ info = self.client.put(url, newUser)
222
return info
0 commit comments