Skip to content

Commit 4cdf7b5

Browse files
committed
Fixing imports
1 parent 6d3ec99 commit 4cdf7b5

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

imgurpython/helpers/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import math
2-
from imgur.models.comment import Comment
3-
from imgur.models.gallery_album import GalleryAlbum
4-
from imgur.models.gallery_image import GalleryImage
5-
from imgur.models.notification import Notification
2+
from ..helpers import Comment
3+
from ..helpers import GalleryAlbum
4+
from ..helpers import GalleryImage
5+
from ..helpers import Notification
66

77

88
def center_pad(s, length):

0 commit comments

Comments
 (0)