Description

Repetitively referring objects as arguments for a function is unsupported. Use the following workaround and example to change it into a supported format.

Workaround

Assign the repetitively referenced object to multiple different variables and pass these variables to a function.

Example

The original script:

w_1.wf_1(dw_1,dw_1) 

Re-write it using the following format:

u_dw ldw_1, ldw_2
ldw_1 = dw_1
ldw_2 = dw_1
w_1.wf_1(ldw_1,ldw_2)

1
0