Skip to content

Commit 55c25d8

Browse files
authored
Bugfix
Bugfix to error #163
1 parent 9806785 commit 55c25d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

surepy/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ async def call(
283283
)
284284

285285
if response_data:
286-
responselen = len(response_data.get("data", 0))
286+
responselen = len(response_data.get("data", []))
287287
else:
288288
responselen = 0
289289
logger.debug(

0 commit comments

Comments
 (0)