ignore parentheses/brackets

This commit is contained in:
2026-02-02 18:15:58 +01:00
parent 20772c79b1
commit 295dc1b120

View File

@@ -410,7 +410,11 @@ class ValuesEntry(wx.TextCtrl, PersistableWidget):
def get_split_strings(self):
return self.GetValue().replace(",", " ").split()
res = self.GetValue()
delete = "[]()"
for c in delete:
res = res.replace(c, "")
return res.replace(",", " ").split()