-
Notifications
You must be signed in to change notification settings - Fork 0
DEVP-12 :: list & delete voice calls #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DEVP-12 :: list & delete voice calls #1
Conversation
…ird/python-rest-api into DEVP-12_list_voice_calls
|
Please ignore the version history, was from a messy rebase .. 🤦♂️ |
JornEngelbart
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, one single small comment
|
|
||
| def __str__(self): | ||
| items_count = 0 if self.items is None else len(self.items) | ||
| return str(self.__class__) + " with %d items.\n" % items_count |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe return "%s with %d items.\n" % (str(self.__class__), items_count) would be a bit nicer
No description provided.