Skip to content

Commit

Permalink
fix(module): relative imports
Browse files Browse the repository at this point in the history
  • Loading branch information
accraze committed Nov 27, 2016
1 parent 35e2ce8 commit 7180d25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/markov_novel/chapter.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from random import randint

import markovify
from paragraph import Paragraph
from .paragraph import Paragraph


class Chapter(object):
Expand Down
2 changes: 1 addition & 1 deletion src/markov_novel/novel.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from chapter import Chapter
from .chapter import Chapter


class Novel(object):
Expand Down

0 comments on commit 7180d25

Please sign in to comment.