Replace minified JavaScript bundle.json with local copy.
(uri)
| 127 | |
| 128 | |
| 129 | def overwrite_bundle_local(uri): |
| 130 | """Replace minified JavaScript bundle.json with local copy.""" |
| 131 | |
| 132 | path = os.path.join(PROJECT_ROOT, "plotly", "package_data", "plotly.min.js") |
| 133 | shutil.copyfile(uri, path) |
| 134 | |
| 135 | |
| 136 | def overwrite_bundle(url): |
no outgoing calls
no test coverage detected