diff options
author | halcy <halcy@ARARAGI-KUN> | 2022-11-15 11:10:13 +0200 |
---|---|---|
committer | halcy <halcy@ARARAGI-KUN> | 2022-11-15 11:10:13 +0200 |
commit | 5f09c3814ec5cc6d82a7f9202851e6eea5d78828 (patch) | |
tree | 47ad967b6f0a746cf2ad3869e5f23c83456df9d8 /mastodon | |
parent | 2648c2f6a2463b5aaeeb623751f27a5455b511a2 (diff) | |
download | mastodon.py-5f09c3814ec5cc6d82a7f9202851e6eea5d78828.tar.gz |
Fix an issue, remove a test
Diffstat (limited to 'mastodon')
-rw-r--r-- | mastodon/Mastodon.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index 7de4be9..5824dae 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py | |||
@@ -511,9 +511,6 @@ class Mastodon: | |||
511 | """ | 511 | """ |
512 | return Mastodon.__SUPPORTED_MASTODON_VERSION | 512 | return Mastodon.__SUPPORTED_MASTODON_VERSION |
513 | 513 | ||
514 | def auth_request_url(self, client_id=None, redirect_uris="urn:ietf:wg:oauth:2.0:oob", | ||
515 | scopes=__DEFAULT_SCOPES, force_login=False): | ||
516 | |||
517 | def auth_request_url(self, client_id=None, redirect_uris="urn:ietf:wg:oauth:2.0:oob", scopes=__DEFAULT_SCOPES, force_login=False, state=None): | 514 | def auth_request_url(self, client_id=None, redirect_uris="urn:ietf:wg:oauth:2.0:oob", scopes=__DEFAULT_SCOPES, force_login=False, state=None): |
518 | """ | 515 | """ |
519 | Returns the URL that a client needs to request an OAuth grant from the server. | 516 | Returns the URL that a client needs to request an OAuth grant from the server. |