From d9cd7547fd0919a46b79ede084910b7df66f8fd7 Mon Sep 17 00:00:00 2001 From: halcy Date: Wed, 30 Nov 2022 23:47:46 +0200 Subject: Move some more methods, fix crypto heckup --- mastodon/accounts.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'mastodon/accounts.py') diff --git a/mastodon/accounts.py b/mastodon/accounts.py index dcdd8de..5ecdf93 100644 --- a/mastodon/accounts.py +++ b/mastodon/accounts.py @@ -2,7 +2,9 @@ from .defaults import _DEFAULT_SCOPES, _SCOPE_SETS from .error import MastodonIllegalArgumentError, MastodonAPIError from .utility import api_version -class Mastodon(): +from .internals import Mastodon as Internals + +class Mastodon(Internals): @api_version("2.7.0", "2.7.0", "3.4.0") def create_account(self, username, password, email, agreement=False, reason=None, locale="en", scopes=_DEFAULT_SCOPES, to_file=None, return_detailed_error=False): """ -- cgit v1.2.3