diff options
author | Lorenz Diener <[email protected]> | 2017-11-21 14:33:04 +0100 |
---|---|---|
committer | Lorenz Diener <[email protected]> | 2017-11-21 14:33:04 +0100 |
commit | e1a1592575d2aa8d5d719269bca4ca3effc8dc31 (patch) | |
tree | 6d8a9d9814f592937e983ef30920e19b30329f04 /mastodon | |
parent | c072b2e24766c3f4b1f92e33436874f02175d400 (diff) | |
download | mastodon.py-e1a1592575d2aa8d5d719269bca4ca3effc8dc31.tar.gz |
Documented report dicts
Diffstat (limited to 'mastodon')
-rw-r--r-- | mastodon/Mastodon.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index 9456495..49d7e9b 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py | |||
@@ -470,6 +470,9 @@ class Mastodon: | |||
470 | Fetch a list of reports made by the authenticated user. | 470 | Fetch a list of reports made by the authenticated user. |
471 | 471 | ||
472 | Returns a list of report dicts. | 472 | Returns a list of report dicts. |
473 | |||
474 | Warning: According to the official API documentation, this | ||
475 | method is to be treated as not finalized as of Mastodon 2.0.0. | ||
473 | """ | 476 | """ |
474 | return self.__api_request('GET', '/api/v1/reports') | 477 | return self.__api_request('GET', '/api/v1/reports') |
475 | 478 | ||