diff options
author | Gareth Dunstone <[email protected]> | 2020-01-31 17:02:10 +1100 |
---|---|---|
committer | Gareth Dunstone <[email protected]> | 2020-01-31 17:02:10 +1100 |
commit | ecfbd0ae235671f346d27dd292135d76a24e2582 (patch) | |
tree | 80e481f5f3176059d5c67ecabb3d2b08bbd84448 /mastodon | |
parent | 37a180126e3ddd51d3c0c3803c3f506b121df75a (diff) | |
download | mastodon.py-ecfbd0ae235671f346d27dd292135d76a24e2582.tar.gz |
added other parameters to account_update_credentials
Diffstat (limited to 'mastodon')
-rw-r--r-- | mastodon/Mastodon.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index f28b164..0d1750f 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py | |||
@@ -2107,7 +2107,8 @@ class Mastodon: | |||
2107 | def account_update_credentials(self, display_name=None, note=None, | 2107 | def account_update_credentials(self, display_name=None, note=None, |
2108 | avatar=None, avatar_mime_type=None, | 2108 | avatar=None, avatar_mime_type=None, |
2109 | header=None, header_mime_type=None, | 2109 | header=None, header_mime_type=None, |
2110 | locked=None, bot=None, fields=None): | 2110 | locked=None, bot=None, |
2111 | discoverable=None, fields=None): | ||
2111 | """ | 2112 | """ |
2112 | Update the profile for the currently logged-in user. | 2113 | Update the profile for the currently logged-in user. |
2113 | 2114 | ||