Commit e0343342 by Calen Pennington

Fix typo during pylint fixes

parent 1f11508a
......@@ -207,7 +207,7 @@ def namedtuple_to_son(ntuple, prefix=''):
"""
son = SON()
for idx, field_name in enumerate(ntuple._fields):
son[prefix + field_name] = namedtuple[idx]
son[prefix + field_name] = ntuple[idx]
return son
......@@ -706,4 +706,7 @@ class DraftMongoModuleStore(DraftModuleStore, MongoModuleStore):
"""
Version of MongoModuleStore with draft capability mixed in
"""
"""
Version of MongoModuleStore with draft capability mixed in
"""
pass
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment