Commit 431f19fe56 added an extra parameter to analyze_friends(), but didn’t add a matching argument to the invocation in command-line mode. Since I don’t know what the extra argument does, I’m going for the simplest possible solution, which is to just specify None for the extra argument (analyze_friends() explicitly checks whether the list_id is None, so presumably that’s a valid argument). Fixes #16.
Commit 431f19fe56 added an extra parameter to
analyze_friends()
, but didn’t add a matching argument to the invocation in command-line mode. Since I don’t know what the extra argument does, I’m going for the simplest possible solution, which is to just specifyNone
for the extra argument (analyze_friends()
explicitly checks whether thelist_id
isNone
, so presumably that’s a valid argument). Fixes #16.