-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Description
When I pass typed = True, the UntypedDataSet is downloaded and the other way around.
E.g.
cbsodata.get_data(tableid, dir='D:/jsondata/', typed=False)
returns the TypedDataSet.
Probably this code
# Download only the typed or untyped data
typed_or_not_str = "TypedDataSet" if typed else "UntypedDataSet"
metadata_table_names.remove(typed_or_not_str)
should be like this?:
typed_or_not_str = "UntypedDataSet" if typed else "TypedDataSet"
metadata_table_names.remove(typed_or_not_str)
in order to remove the option that was not chosen.
Kind regards, Wouter
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels