This is how PyYAML behaves on my machine:
>>> plan = {'Business Plan': ['Collect Underpants', '?', 'Profit']}
>>> print(yaml.dump(plan))
Business Plan: [Collect Underpants, '?', Profit]
What I want instead is this output (both is valid YAML):
Business Plan:
- Collect Underpants
- '?'
- Profit
Is there some kind of option that would do it?