Commit 63fd9a56 authored by Aurel's avatar Aurel

remove unused variables


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@31202 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent d1b02093
...@@ -192,7 +192,6 @@ class TradeCondition(Path, Transformation, XMLMatrix): ...@@ -192,7 +192,6 @@ class TradeCondition(Path, Transformation, XMLMatrix):
# build a graph # build a graph
father_dict = {} father_dict = {}
child_dict = {} child_dict = {}
root_line = []
for line in trade_model_line_composed_list: for line in trade_model_line_composed_list:
father_dict.setdefault(line, []) father_dict.setdefault(line, [])
for other_line in trade_model_line_composed_list: for other_line in trade_model_line_composed_list:
...@@ -214,7 +213,6 @@ class TradeCondition(Path, Transformation, XMLMatrix): ...@@ -214,7 +213,6 @@ class TradeCondition(Path, Transformation, XMLMatrix):
# sort graph according to predecessors # sort graph according to predecessors
f = root_line_list[:] f = root_line_list[:]
tmp = None tmp = None
cpt = 0
final_list = root_line_list[:] final_list = root_line_list[:]
while len(f): while len(f):
tmp = f.pop(0) tmp = f.pop(0)
......
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