[Python] syntax spaces and new lines

Users who are viewing this thread

Trying to update Lav's header_operations.py to integrate it in module system. Does it different if I put new line or new spaces
This is code from Lav's header_operations.py
Code:
lhs_operations = [try_for_range, try_for_range_backwards, try_for_parties, try_for_agents, store_script_param_1, store_script_param_2, store_script_param, store_repeat_object,
This is from official header_operations.py
Code:
lhs_operations = [try_for_range,
                  try_for_range_backwards,
                  try_for_parties,
                  try_for_agents,
                  try_for_prop_instances,
                  try_for_players,
                  store_script_param_1,
                  store_script_param_2,
                  store_script_param,
                  store_repeat_object,
 
Back
Top Bottom