From 48f8d3c11d9117f10e6ca5b76a08b91cef5c861b Mon Sep 17 00:00:00 2001 From: Gregor Kleen Date: Thu, 1 Aug 2024 10:31:11 +0200 Subject: ... --- overlays/worktime/worktime/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'overlays/worktime') diff --git a/overlays/worktime/worktime/__main__.py b/overlays/worktime/worktime/__main__.py index 5630837b..0df226fa 100755 --- a/overlays/worktime/worktime/__main__.py +++ b/overlays/worktime/worktime/__main__.py @@ -42,7 +42,7 @@ class TogglAPISection(Enum): REPORTS = '/reports/api/v2' class TogglAPIError(Exception): - def __init__(self, http_error, response): + def __init__(self, response, *, http_error=None): self.http_error = http_error self.response = response @@ -179,7 +179,7 @@ class TogglAPI(object): url = self._make_url(api = TogglAPISection.TOGGL, section = ['me', 'time_entries', 'current']) r = self._query(url = url, method='GET') - if not r or not r.json(): + if not r or (not r.json() and r.json() is not None): raise TogglAPIError(r) if not r.json() or not r.json()['billable']: -- cgit v1.2.3