Document another helper, to see all task values

This commit is contained in:
benjamin melançon 2021-06-02 08:55:02 -04:00
parent 0b61f165e3
commit e9021e4ed9

View file

@ -84,3 +84,9 @@ And yeah you can just sort of tack on the column you want to mess with and do an
```python ```python
tl[tl.project == ""] tl[tl.project == ""]
``` ```
#### See which tasks we ended up with
```python
pd.unique(harvest.Task)
```