I've written a python script which uses Twython to interact with twitter. It downloads the followers list into a variable (followers), and the list of people I'm following into another variable (friends). It should then automatically follow everybody who follows me, but who I am not yet following.
for fol in followers:
if fol not in friends:
twitter.create_friendship(fol)
The error I'm getting is that twitter.create_friendship
requires exactly one argument, but it is being given two. I don't see how it is being given two arguments, I can only see the one.