fix parent + url (4)

This commit is contained in:
Marek Isalski 2022-01-28 09:58:31 +00:00
parent 4274171909
commit 0ce093589b

View File

@ -238,7 +238,7 @@ class Customer(APIObject):
yield PhoneNumber(self._api, data=c)
def calls(self, params=None):
for c in self._api.getMany(Call.makeUrl(parent=self, params=params, pageSize=100):
for c in self._api.getMany(Call.makeUrl(parent=self, params=params, pageSize=100)):
yield Call(self._api, data=c)
def callbundles(self):