Download latest version of the plot-schema JSON file.
(plotly_js_version)
| 195 | |
| 196 | |
| 197 | def update_schema(plotly_js_version): |
| 198 | """Download latest version of the plot-schema JSON file.""" |
| 199 | |
| 200 | url = ( |
| 201 | "https://raw.githubusercontent.com/plotly/plotly.js/" |
| 202 | "v%s/dist/plot-schema.json" % plotly_js_version |
| 203 | ) |
| 204 | overwrite_schema(url) |
| 205 | |
| 206 | |
| 207 | def update_bundle(plotly_js_version): |
no test coverage detected