Maya skinning issue (python)

Hey guys i’m currently stuck on a simply but confusing problem.
Its simply this line of code

the issue is that i’m tryin to get two objects to be skinned by UV space.

I’ve been trying to get it to work with the UV flag but its doesn’t seem to like it. In addition i’ve been trying to shuffle some of the flags around to see if it would work but with no avail

Not sure with UV name or skin cluster name though but tried both and both didn’t work.

cmds.copySkinWeights( ss=‘skinCluster15’, ds=‘skinCluster16’, noMirror=True)

cmds.copySkinWeights( ss=‘skinCluster15’, ds=‘skinCluster16’, noMirror=True, uv = “map1”, “map1”)

its probabaly pretty simple but its still kinda confusing me.

actually i think its solved it had to be in a list sorry about that

cmds.copySkinWeights( ss=‘skinCluster15’, ds=‘skinCluster16’, noMirror=True, uv = [“skinCluster15”, “skinCluster16”])