From 65fe7e57b69eee00334475ac5954291d6e046304 Mon Sep 17 00:00:00 2001 From: Joshua Roesslein Date: Fri, 27 Dec 2013 12:44:35 -0600 Subject: [PATCH] Fix syntax error caused by bad merge. --- tweepy/api.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tweepy/api.py b/tweepy/api.py index e0d955e..1468a31 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -687,12 +687,13 @@ class API(object): path = '/help/languages.json', payload_type = 'json', require_auth = True + ) - """help/configuration""" + """ help/configuration """ configuration = bind_api( path = '/help/configuration.json', payload_type = 'json', - require_auth = True, + require_auth = True ) """ Internal use only """ -- 2.25.1