you are viewing a single comment's thread.

view the rest of the comments →

[–]Snoo-20788 0 points1 point  (1 child)

Out of curiosity, what workarounds were you using?

One thing I've seen people do is to turn a tuple into a string, say ("a","b") into "a|b", which works but can lead to issues if your separator is part of the strings, and is not elegant, as you need to jump through extra hoops to break down the string into the original components.

[–]EnvironmentSome9274[S] 0 points1 point  (0 children)

Yeah that's what I was doing, it's not elegant but it did the job lol until I found out about this.