Naveen Yadav

Results 3 issues of Naveen Yadav

``` In [23]: recp = Recipient(123, 345) In [24]: recp.to_dict() Out[24]: {'id': 123} ``` `to_dict()` , dictionary does not have `phone_number`even though instance has phone_number value

``` class Attachment(object): def to_dict(self): return { 'type': self.attachment_type, 'payload': self.payload } ``` The above class does not have the `attachment_type` and `payload` attributes, I guess you have kept this...

While running the unicode.py from examples file, it throws IndexError. I run file with ``python unicode.py 111 prompt.py` (the prompt.py file is present here) ``` Test: ✔ Fake test 1....