We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The _mastodon_app_client is initialized as:
_mastodon_app_client
self._mastodon_app_client = Mastodon.create_app('feditest', api_base_url=app_base_url)
The result is a tuple (client_id, client_secret). Later, in UserRecord.mastodon_user_client, there is code to copy it, which is not valid for a tuple.
(client_id, client_secret)
UserRecord.mastodon_user_client
def mastodon_user_client(self, mastodon_app_client): if not self._mastodon_user_client: self._mastodon_user_client = mastodon_app_client.copy() # <-- Can't copy a tuple. ...
The text was updated successfully, but these errors were encountered:
Silly me.
Sorry, something went wrong.
Done in #333.
No branches or pull requests
The
_mastodon_app_client
is initialized as:The result is a tuple
(client_id, client_secret)
. Later, inUserRecord.mastodon_user_client
, there is code to copy it, which is not valid for a tuple.The text was updated successfully, but these errors were encountered: