If I have a custom property in a tag, how could I remove it?
My current work around is this:
# pseudo code
tag = system.tag.getConfiguration("tag/path")
tag.pop("custom", None)
system.tag.configure("tag/path", tag, "o")
Is there a more direct way?
Thanks!
