We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d3ec99 commit 4cdf7b5Copy full SHA for 4cdf7b5
2 files changed
imgurpython/helpers/__init__.py
@@ -0,0 +1,4 @@
1
+from ..imgur.models.comment import Comment
2
+from ..imgur.models.notification import Notification
3
+from ..imgur.models.gallery_album import GalleryAlbum
4
+from ..imgur.models.gallery_image import GalleryImage
imgurpython/helpers/format.py
@@ -1,8 +1,8 @@
import math
-from imgur.models.comment import Comment
-from imgur.models.gallery_album import GalleryAlbum
-from imgur.models.gallery_image import GalleryImage
5
-from imgur.models.notification import Notification
+from ..helpers import Comment
+from ..helpers import GalleryAlbum
+from ..helpers import GalleryImage
+from ..helpers import Notification
6
7
8
def center_pad(s, length):
0 commit comments