Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

as written on the google api python client documentation

Deleting a secondary calendar(under python example)

service.calendars().delete('secondaryCalendarId').execute()

this function call returns the following: method() takes exactly 1 argument (2 given)

Does anyone have a clue what this error means? Clearly I just passed 1 argument and that is the calendarId that needs to be deleted. Or did anyone make this function work? Need help.

Thanks.

share|improve this question

1 Answer

You have to supply the parameter name:

service.calendars().delete(calendarId='secondaryCalendarId').execute()

http://api-python-client-doc.appspot.com/calendar/v3/calendars

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.