In exposure.py line 68, _batch calls self.request(...) but the method on the parent CTXConnection class is named self._request(...).
Traceback:
AttributeError: 'Exposure' object has no attribute 'request'. Did you mean: '_request'?
Fix: Change line 68 from self.request(endpoint=endpoint, query=q) to self._request(endpoint=endpoint, query=q).
I have a branch ready with this fix if a PR would be welcome.
In
exposure.pyline 68,_batchcallsself.request(...)but the method on the parent CTXConnection class is namedself._request(...).Traceback:
AttributeError: 'Exposure' object has no attribute 'request'. Did you mean: '_request'?
Fix: Change line 68 from
self.request(endpoint=endpoint, query=q)toself._request(endpoint=endpoint, query=q).I have a branch ready with this fix if a PR would be welcome.