(path: Path, project: dict)
| 83 | |
| 84 | |
| 85 | def _write_project(path: Path, project: dict) -> Path: |
| 86 | path.write_text(json.dumps(project, indent=2), encoding="utf-8") |
| 87 | return path |
| 88 | |
| 89 | |
| 90 | def _connect_and_send(api_client, device_simulator, n_values=9): |
no outgoing calls
no test coverage detected