Uploads the project json from the project with the given id to the project represented by this Project object
(self, project_id: int | str)
| 402 | ).json() |
| 403 | |
| 404 | def upload_json_from(self, project_id: int | str): |
| 405 | """ |
| 406 | Uploads the project json from the project with the given id to the project represented by this Project object |
| 407 | """ |
| 408 | self._assert_auth() |
| 409 | other_project = self._session.connect_project(project_id) # type: ignore |
| 410 | self.set_json(other_project.raw_json()) |
| 411 | |
| 412 | # -- other -- # |
| 413 |
nothing calls this directly
no test coverage detected