1 Comment

You probably have already thought of this, but to split the tags with newlines, could using 'deepcopy' from the 'copy' module help? Something like

```

from copy import deepcopy

newtag = deepcopy(oldtag)

```

I think then most likely they would be referring to different strings, but I could be wrong

Expand full comment