Yield support
This commit is contained in:
parent
43df2ac79a
commit
593fbe2fd9
2 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue