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.
2 parents dc10382 + 8d4fb96 commit d50016cCopy full SHA for d50016c
setup.py
@@ -1,7 +1,7 @@
1
from setuptools import setup
2
import os
3
4
-VERSION = "0.3.0"
+VERSION = "0.3.1"
5
6
7
def get_long_description():
toggl_to_sqlite/utils.py
@@ -29,6 +29,11 @@ def get_workspaces(api_token):
29
)
30
if response.status_code == 200:
31
workspaces.append(json.loads(response.text))
32
+ for workspace in workspaces[0]:
33
+ try:
34
+ workspace.pop('api_token', None)
35
+ except AttributeError:
36
+ pass
37
return workspaces
38
39
0 commit comments