aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlefherz <[email protected]>2019-05-18 12:54:47 +0200
committerlefherz <[email protected]>2019-05-18 12:54:47 +0200
commit0160dcaad95a8216639f5628abedf953646bee62 (patch)
tree7e3e39d1552ec08646c200cc9d1377b80ffc567e /mastodon
parentb7fb2d69e68a58971f9e6a86cefd34e8d8db0779 (diff)
downloadmastodon.py-0160dcaad95a8216639f5628abedf953646bee62.tar.gz
fixing ImportError
Diffstat (limited to 'mastodon')
-rw-r--r--mastodon/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mastodon/__init__.py b/mastodon/__init__.py
index 1b2103f..1be4aba 100644
--- a/mastodon/__init__.py
+++ b/mastodon/__init__.py
@@ -1,4 +1,4 @@
1from mastodon.Mastodon import Mastodon, AttribAccessDict, MastodonError, MastodonVersionError, MastodonIllegalArgumentError, MastodonIOError, MastodonFileNotFoundError, MastodonNetworkError, MastodonAPIError, MastodonNotFoundError, MastodonUnauthorizedError, MastodonRatelimitError, MastodonMalformedEventError 1from mastodon.Mastodon import Mastodon, AttribAccessDict, MastodonError, MastodonVersionError, MastodonIllegalArgumentError, MastodonIOError, MastodonFileNotFoundError, MastodonNetworkError, MastodonAPIError, MastodonNotFoundError, MastodonUnauthorizedError, MastodonRatelimitError, MastodonMalformedEventError, MastodonServerError
2from mastodon.streaming import StreamListener, CallbackStreamListener 2from mastodon.streaming import StreamListener, CallbackStreamListener
3 3
4__all__ = ['Mastodon', 'AttribAccessDict', 'StreamListener', 'CallbackStreamListener', 'MastodonError', 'MastodonVersionError', 'MastodonIllegalArgumentError', 'MastodonIOError', 'MastodonFileNotFoundError', 'MastodonNetworkError', 'MastodonAPIError', 'MastodonNotFoundError', 'MastodonUnauthorizedError', 'MastodonRatelimitError', 'MastodonMalformedEventError', 4__all__ = ['Mastodon', 'AttribAccessDict', 'StreamListener', 'CallbackStreamListener', 'MastodonError', 'MastodonVersionError', 'MastodonIllegalArgumentError', 'MastodonIOError', 'MastodonFileNotFoundError', 'MastodonNetworkError', 'MastodonAPIError', 'MastodonNotFoundError', 'MastodonUnauthorizedError', 'MastodonRatelimitError', 'MastodonMalformedEventError',
Powered by cgit v1.2.3 (git 2.41.0)