Merge pull request #21 from roberttstephens/use_explicit_relative_imports
Use explicit relative import instead of implicit.master
commit
8c7f6cd085
@ -1,4 +1,4 @@ |
|||||||
# -*- coding: utf-8 -*- |
# -*- coding: utf-8 -*- |
||||||
'''The public module, including the homepage and user auth.''' |
'''The public module, including the homepage and user auth.''' |
||||||
|
|
||||||
import views |
from . import views |
||||||
|
@ -1,3 +1,3 @@ |
|||||||
'''The user module.''' |
'''The user module.''' |
||||||
|
|
||||||
import views |
from . import views |
||||||
|
Loading…
Reference in new issue