Replace execute function with bind_api
authorHarmon <Harmon758@gmail.com>
Wed, 3 Feb 2021 08:00:03 +0000 (02:00 -0600)
committerHarmon <Harmon758@gmail.com>
Wed, 3 Feb 2021 08:00:03 +0000 (02:00 -0600)
tweepy/binder.py

index f8ff5172dcf5392ad37898555cdfa9f6f5bc385b..71bebbb24037002c39c116db2592ac999db0b112 100644 (file)
@@ -15,10 +15,10 @@ from tweepy.models import Model
 log = logging.getLogger(__name__)
 
 
-def execute(api, method, path, *args, allowed_param=[], params=None,
-            headers=None, json_payload=None, parser=None, payload_list=False,
-            payload_type=None, post_data=None, require_auth=False,
-            return_cursors=False, upload_api=False, use_cache=True, **kwargs):
+def bind_api(api, method, path, *args, allowed_param=[], params=None,
+             headers=None, json_payload=None, parser=None, payload_list=False,
+             payload_type=None, post_data=None, require_auth=False,
+             return_cursors=False, upload_api=False, use_cache=True, **kwargs):
     # If authentication is required and no credentials
     # are provided, throw an error.
     if require_auth and not api.auth:
@@ -167,10 +167,6 @@ def execute(api, method, path, *args, allowed_param=[], params=None,
         session.close()
 
 
-def bind_api(api, method, path, *args, **kwargs):
-    return execute(api, method, path, *args, **kwargs)
-
-
 def pagination(mode):
     def decorator(method):
         method.pagination_mode = mode