summaryrefslogtreecommitdiff
path: root/factory/containers.py
diff options
context:
space:
mode:
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