Following code snippet:
import yaml
import collections
def hasher():
  return collections.defaultdict(hasher)
data = hasher()
data['this']['is']['me'] = 'test'
print yaml.dump(data)
This returns:
!!python/object/apply:collections.defaultdict
args: [&id001 !!python/name:__main__.hasher '']
dictitems:
  this: !!python/object/apply:collections.defaultdict
    args: [*id001]
    dictitems:
      is: !!python/object/apply:collections.defaultdict
        args: [*id001]
        dictitems: {me: test}
How would I remove:
!!python/object/apply:collections.defaultdict
[*id001]
End goal is:
  this: 
    is: 
      me: "test"
Any help appreciated!