Update test_dataset.py
Browse files- test_dataset.py +2 -2
test_dataset.py
CHANGED
@@ -64,8 +64,8 @@ class HealthStatisticsDataset(datasets.GeneratorBasedBuilder):
|
|
64 |
latitude, longitude = None, None
|
65 |
yield key, {
|
66 |
"Year": year,
|
67 |
-
"
|
68 |
-
"
|
69 |
"Geolocation": {
|
70 |
"latitude": latitude,
|
71 |
"longitude": longitude
|
|
|
64 |
latitude, longitude = None, None
|
65 |
yield key, {
|
66 |
"Year": year,
|
67 |
+
"LocationAbbr": row.get('LocationAbbr', None),
|
68 |
+
"LocationDesc": row.get('LocationDesc', None),
|
69 |
"Geolocation": {
|
70 |
"latitude": latitude,
|
71 |
"longitude": longitude
|