Yield support

This commit is contained in:
Ilya Zverev 2018-04-25 15:55:02 +03:00
parent 43df2ac79a
commit 593fbe2fd9
2 changed files with 3 additions and 2 deletions

View file

@ -4,6 +4,7 @@
* Fixed processing of `''` tag value.
* More that 3 duplicate points in a single place are processed correctly.
* Now you can `yield` points from a profile instead of making a list.
## 1.3.2

View file

@ -975,9 +975,9 @@ def read_dataset(profile, fileobj):
return data
except Exception:
logging.error('Failed to parse the source as a JSON')
return profile.get(
return list(profile.get(
'dataset', args=(fileobj,),
required='returns a list of SourcePoints with the dataset')
required='returns a list of SourcePoints with the dataset'))
def add_categories_to_dataset(profile, dataset):