You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 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
The text was updated successfully, but these errors were encountered:
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
should be like this?:
in order to remove the option that was not chosen.
Kind regards, Wouter
The text was updated successfully, but these errors were encountered: