diff options
author | Lorenz Diener <[email protected]> | 2017-04-25 11:41:48 +0200 |
---|---|---|
committer | Lorenz Diener <[email protected]> | 2017-04-25 11:41:48 +0200 |
commit | fde6806120ecb23de0e2da698e4a5a2635f7013d (patch) | |
tree | 804929c2d22b8913ac10d6ef612a561e444020a6 /mastodon | |
parent | 5aeb953d24917feae9c18cb5f2ae505ab731244a (diff) | |
download | mastodon.py-fde6806120ecb23de0e2da698e4a5a2635f7013d.tar.gz |
Documentation fixes to address #21
Diffstat (limited to 'mastodon')
-rw-r--r-- | mastodon/Mastodon.py | 4 |
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 | """ |