From 495f21ee5591fb451f6fd72a768edec46e6a7107 Mon Sep 17 00:00:00 2001 From: Harmon Date: Tue, 4 Dec 2018 09:55:22 -0600 Subject: [PATCH] Fix line length consistency in cursor tutorial --- docs/cursor_tutorial.rst | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/docs/cursor_tutorial.rst b/docs/cursor_tutorial.rst index fd5454c..0958dda 100644 --- a/docs/cursor_tutorial.rst +++ b/docs/cursor_tutorial.rst @@ -80,7 +80,8 @@ would use the pages() method:: Limits ------ -What if you only want n items or pages returned? You pass into the items() or pages() methods the limit you want to impose. +What if you only want n items or pages returned? You pass into the +items() or pages() methods the limit you want to impose. .. code-block :: python @@ -96,11 +97,15 @@ What if you only want n items or pages returned? You pass into the items() or pa Include Tweets > 140 Characters ------------------------------- -Since twitter increased the maximum number of characters allowed in a tweet from 140 to 280, you may notice that tweets greater than 140 characters are truncated with ... +Since twitter increased the maximum number of characters allowed in a +tweet from 140 to 280, you may notice that tweets greater than 140 +characters are truncated with ... -If you want your results to include the full text of the long tweets, make these simple changes: +If you want your results to include the full text of the long tweets, +make these simple changes: -- add the argument ``tweet_mode='extended'`` to your Cursor object call +- add the argument ``tweet_mode='extended'`` + to your Cursor object call - change your usage of ``.text`` to ``.full_text`` -- 2.25.1