summaryrefslogtreecommitdiff
path: root/factory/containers.py
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2011-09-05 21:24:45 +0200
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2011-09-05 21:24:45 +0200
commit0d97937d994d4ec11f77661985be971a61daa6e3 (patch)
treeeac60636282d7ce58d89be34a10da7972f455884 /factory/containers.py
parent6983f7fcbb9bad0ea825fb3de8682f178fab5647 (diff)
downloadfactory-boy-0d97937d994d4ec11f77661985be971a61daa6e3.tar
factory-boy-0d97937d994d4ec11f77661985be971a61daa6e3.tar.gz
Update docstrings.
Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
Diffstat (limited to 'factory/containers.py')
-rw-r--r--factory/containers.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/factory/containers.py b/factory/containers.py
index be61641..b46a19f 100644
--- a/factory/containers.py
+++ b/factory/containers.py
@@ -24,9 +24,9 @@ from declarations import OrderedDeclaration, SubFactory
ATTR_SPLITTER = '__'
class ObjectParamsWrapper(object):
- '''A generic container that allows for getting but not setting of attributes.
+ """A generic container that allows for getting but not setting of attributes.
- Attributes are set at initialization time.'''
+ Attributes are set at initialization time."""
initialized = False
@@ -168,6 +168,6 @@ class DeclarationsHolder(object):
return attributes
class StubObject(object):
- '''A generic container.'''
+ """A generic container."""
pass