summaryrefslogtreecommitdiff
path: root/factory/containers.py
diff options
context:
space:
mode:
Diffstat (limited to 'factory/containers.py')
-rw-r--r--factory/containers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/factory/containers.py b/factory/containers.py
index 847b2c0..68e1e9f 100644
--- a/factory/containers.py
+++ b/factory/containers.py
@@ -112,7 +112,7 @@ class DeclarationDict(dict):
is private (name starts with '_') or a classmethod or staticmethod.
"""
- if isinstance(value, classmethod):
+ if isinstance(value, (classmethod, staticmethod)):
return False
elif isinstance(value, declarations.OrderedDeclaration):
return True