From 4e6c780f69146c943eb6f9a85bff55a763cf4181 Mon Sep 17 00:00:00 2001 From: Harmon Date: Sat, 26 Dec 2020 03:34:58 -0600 Subject: [PATCH] Update documentation for sep parameter for ReadBuffer.read_line --- tweepy/streaming.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tweepy/streaming.py b/tweepy/streaming.py index b9be9ff..1e80602 100644 --- a/tweepy/streaming.py +++ b/tweepy/streaming.py @@ -183,8 +183,7 @@ class ReadBuffer: def read_line(self, sep=b'\n'): """Read the data stream until a given separator is found (default \n) - :param sep: Separator to read until. Must by of the bytes type (str in python 2, - bytes in python 3) + :param sep: Separator to read until. Must by of the bytes type :return: The str of the data read until sep """ start = 0 -- 2.25.1