aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mastodon/Mastodon.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py
index 2eaec49..08075a7 100644
--- a/mastodon/Mastodon.py
+++ b/mastodon/Mastodon.py
@@ -267,7 +267,7 @@ class Mastodon:
267 267
268 def timeline_local(self, max_id = None, since_id = None, limit = None): 268 def timeline_local(self, max_id = None, since_id = None, limit = None):
269 """ 269 """
270 Fetches the local / instance-wide timeline. 270 Fetches the local / instance-wide timeline, not including replies.
271 271
272 Returns a list of toot dicts. 272 Returns a list of toot dicts.
273 """ 273 """
@@ -275,7 +275,7 @@ class Mastodon:
275 275
276 def timeline_public(self, max_id = None, since_id = None, limit = None): 276 def timeline_public(self, max_id = None, since_id = None, limit = None):
277 """ 277 """
278 Fetches the public / visible-network timeline. 278 Fetches the public / visible-network timeline, not including replies.
279 279
280 Returns a list of toot dicts. 280 Returns a list of toot dicts.
281 """ 281 """
Powered by cgit v1.2.3 (git 2.41.0)