7 lines
203 B
Python
7 lines
203 B
Python
# Import other classes here so they can be imported from here.
|
|
# pylint: disable=W0611
|
|
from .comment import Comment
|
|
from .thread import Thread
|
|
from .user import User
|
|
from .commentable import Commentable
|