diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2012-01-12 23:11:58 +0100 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2012-01-12 23:11:58 +0100 |
commit | 0c4b9334c93170ce6df17506f48e3937090aec05 (patch) | |
tree | e8666590751fc8075a2fa0a76c0b0da5711e62f9 /factory/__init__.py | |
parent | 74225f59761ed3e09b625d9886552bdafb0fc30d (diff) | |
download | factory-boy-0c4b9334c93170ce6df17506f48e3937090aec05.tar factory-boy-0c4b9334c93170ce6df17506f48e3937090aec05.tar.gz |
Rename LazyContainerAttibute to ContainerAttribute.
Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
Diffstat (limited to 'factory/__init__.py')
-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 7f40d6f..cc5b788 100644 --- a/factory/__init__.py +++ b/factory/__init__.py @@ -47,12 +47,12 @@ from declarations import ( Sequence, LazyAttributeSequence, SelfAttribute, - LazyContainerAttribute, + ContainerAttribute, SubFactory, lazy_attribute, sequence, lazy_attribute_sequence, - lazy_container_attribute, + container_attribute, ) |