Commit e0343342 by Calen Pennington

Fix typo during pylint fixes

parent 1f11508a
...@@ -207,7 +207,7 @@ def namedtuple_to_son(ntuple, prefix=''): ...@@ -207,7 +207,7 @@ def namedtuple_to_son(ntuple, prefix=''):
""" """
son = SON() son = SON()
for idx, field_name in enumerate(ntuple._fields): for idx, field_name in enumerate(ntuple._fields):
son[prefix + field_name] = namedtuple[idx] son[prefix + field_name] = ntuple[idx]
return son return son
...@@ -706,4 +706,7 @@ class DraftMongoModuleStore(DraftModuleStore, MongoModuleStore): ...@@ -706,4 +706,7 @@ class DraftMongoModuleStore(DraftModuleStore, MongoModuleStore):
""" """
Version of MongoModuleStore with draft capability mixed in Version of MongoModuleStore with draft capability mixed in
""" """
"""
Version of MongoModuleStore with draft capability mixed in
"""
pass 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