remove endpoint as referenced by @joshthecoder in #288
authorJeff Hull <jsh2134-hosting@gmail.com>
Tue, 14 May 2013 14:18:08 +0000 (09:18 -0500)
committerJoshua Roesslein <jroesslein@gmail.com>
Tue, 14 May 2013 18:04:23 +0000 (11:04 -0700)
tweepy/api.py

index 1eaaf9102a174bbbc83fe66f4f6fbbbfa8bc42a4..cca7f4c03b3325fb10fa29e53c7f23ffee319d40 100644 (file)
@@ -249,13 +249,6 @@ class API(object):
         require_auth = True
     )
 
-    """ friendships/exists """
-    exists_friendship = bind_api(
-        path = '/friendships/exists.json',
-        payload_type = 'json',
-        allowed_param = ['user_a', 'user_b']
-    )
-
     """ friendships/show """
     show_friendship = bind_api(
         path = '/friendships/show.json',
@@ -264,7 +257,6 @@ class API(object):
                           'target_id', 'target_screen_name']
     )
 
-
     """ Perform bulk look up of friendships from user ID or screenname """
     def lookup_friendships(self, user_ids=None, screen_names=None):
            return self._lookup_friendships(list_to_csv(user_ids), list_to_csv(screen_names))