File tree 1 file changed +12
-1
lines changed
retrieverdash/dashboard_script
1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 64
64
'white-clay-creek-waterlevels' ,
65
65
'white-clay-dissolved-carbon' ,
66
66
'white-clay-dissolved-carbon' ,
67
- 'usda-agriculture-plants-database'
67
+ 'usda-agriculture-plants-database' ,
68
+ 'vertnet' ,
69
+ 'vertnet-amphibian' ,
70
+ 'vertnet-bird' ,
71
+ 'vertnet-fishe' ,
72
+ 'vertnet-mammal' ,
73
+ 'vertnet-reptiles'
68
74
]
69
75
70
76
DATASET_DETAIL_JSON = os .path .join (file_location , "dataset_details.json" )
@@ -142,6 +148,11 @@ def load_dataset_details():
142
148
except (OSError , JSONDecodeError ):
143
149
dataset_detail = dict ()
144
150
dataset_detail ['dataset_details' ] = {}
151
+
152
+ for dataset_ignore in IGNORE :
153
+ if dataset_detail ['dataset_details' ] and dataset_ignore in dataset_detail [
154
+ 'dataset_details' ]:
155
+ dataset_detail ['dataset_details' ].pop (dataset_ignore )
145
156
return dataset_detail
146
157
147
158
You can’t perform that action at this time.
0 commit comments