From 5919de0cfd7bab1995d91becb196e9fc584b7aa0 Mon Sep 17 00:00:00 2001 From: Harmon Date: Wed, 4 Sep 2019 02:08:03 -0500 Subject: [PATCH] Fix missing quotation mark in API.list_timeline docstring --- tweepy/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tweepy/api.py b/tweepy/api.py index b8ba92d..4311528 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -1042,7 +1042,7 @@ class API(object): def list_timeline(self): """ :reference: https://developer.twitter.com/en/docs/accounts-and-users/create-manage-lists/api-reference/get-lists-statuses :allowed_param: 'owner_screen_name', 'slug', 'owner_id', 'list_id', - 'since_id', 'max_id', 'count', 'include_rts + 'since_id', 'max_id', 'count', 'include_rts' """ return bind_api( api=self, -- 2.25.1