Entangled 2.1.6
- Allow Yaml lists in task definitions. The following now works:
```python
#| file: test.py
#| classes: ["task"]
#| creates:
#| - hello.txt
print("Hello", file=open("hello.txt", "w"))
``````python
#| file: test.py
#| classes: ["task"]
#| creates:
#| - hello.txt
print("Hello", file=open("hello.txt", "w"))
```