diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2012-08-17 17:00:01 +0200 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2012-11-15 00:01:23 +0100 |
commit | 9db320ba65d91ff8c09169b359ded4bfff5196db (patch) | |
tree | 74bd552214c481eea46aaee512d71edf2d4ddc29 /factory | |
parent | ac7e11a3389f15bb849f88609de7fb7c648e035a (diff) | |
download | factory-boy-9db320ba65d91ff8c09169b359ded4bfff5196db.tar factory-boy-9db320ba65d91ff8c09169b359ded4bfff5196db.tar.gz |
Use proper relative/absolute imports.
Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
Diffstat (limited to 'factory')
-rw-r--r-- | factory/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/factory/__init__.py b/factory/__init__.py index d2267f0..fd37c74 100644 --- a/factory/__init__.py +++ b/factory/__init__.py @@ -23,7 +23,7 @@ __version__ = '1.2.0' __author__ = 'Raphaël Barrois <raphael.barrois@polytechnique.org>' -from base import ( +from .base import ( Factory, StubFactory, DjangoModelFactory, @@ -51,7 +51,7 @@ from base import ( MOGO_BUILD, ) -from declarations import ( +from .declarations import ( LazyAttribute, Iterator, InfiniteIterator, |