Today I started my IDE and noticed an error on this line:
|
result = json.loads(result.text) |
I expect that the right version should read:
result = json.loads(response.text)
Apparently I do not use fetch_systems or I would have noticed earlier.
cheers,
Jacco
Today I started my IDE and noticed an error on this line:
python_enlighten_api/utils/enlightenAPI_v4.py
Line 39 in 8bad13c
I expect that the right version should read:
result = json.loads(response.text)Apparently I do not use
fetch_systemsor I would have noticed earlier.cheers,
Jacco