Commit 4d9232d5 authored by Nicolas Dumazet's avatar Nicolas Dumazet

one statement per line


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@32716 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent f199ff09
...@@ -473,7 +473,9 @@ class XMLMatrix(Folder): ...@@ -473,7 +473,9 @@ class XMLMatrix(Folder):
if getattr(aq_base(self), 'index', None) is None: if getattr(aq_base(self), 'index', None) is None:
return [] return []
cell_range = self.index.get(base_id, None) cell_range = self.index.get(base_id, None)
if cell_range is None: return None if cell_range is None:
return None
result = [] result = []
for i in range(0,len(cell_range.keys())): for i in range(0,len(cell_range.keys())):
result_items = cell_range[i].items() result_items = cell_range[i].items()
......
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