I know that we are in the process of deprecating the objects API call (receives a list) in favour of the object call. Is it correct behaviour for objects to now return None?
E.g.:
response = L.objects(['ZTF22aaaivuk'])
print(response)
None
response = L.object('ZTF22aaaivuk')
print(response)
{'objectId': 'ZTF22aaaivuk', 'objectData': {'ncand': 11, 'ramean': 171.12209907272728,... etc}