Update documentation for sep parameter for ReadBuffer.read_line
authorHarmon <Harmon758@gmail.com>
Sat, 26 Dec 2020 09:34:58 +0000 (03:34 -0600)
committerHarmon <Harmon758@gmail.com>
Sat, 26 Dec 2020 09:34:58 +0000 (03:34 -0600)
tweepy/streaming.py

index b9be9fff646ef09b07578ff3fcdda97daef3e49e..1e80602a99fe7321edcf9081f7b52b46b78ecf7b 100644 (file)
@@ -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