You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm seeing a TypeError being emitted from this library occasionally. Specifically at
File "<omitted>/quickbooks/mixins.py", line 333, in query
if object_name in json_data["QueryResponse"]:
~~~~~~~~~^^^^^^^^^^^^^^^^^
TypeError: 'NoneType' object is not subscriptable
It looks like qb.query(select) can return None (maybe when no results are returned? Maybe API error?) This causes TypeError to be thrown outside of the library itself because of trying access a property on a None object.
The text was updated successfully, but these errors were encountered:
Hi,
I'm seeing a
TypeError
being emitted from this library occasionally. Specifically atIt looks like
qb.query(select)
can returnNone
(maybe when no results are returned? Maybe API error?) This causesTypeError
to be thrown outside of the library itself because of trying access a property on a None object.The text was updated successfully, but these errors were encountered: