Commit 4e755c32 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

remove an unused variabls.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@34569 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent ad516401
......@@ -69,14 +69,11 @@ class MovementGeneratorMixin:
return [(input_movement, None) for input_movement in input_movement_list]
input_movement_and_path_list = []
business_path_list = []
for input_movement in input_movement_list:
for business_path in business_process.getPathValueList(
trade_phase_list,
input_movement) or [None]:
input_movement_and_path_list.append((input_movement, business_path))
business_path not in business_path_list and business_path_list \
.append(business_path)
return input_movement_and_path_list
......
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