bonsaicli2/bonsai_cli/commands/simulator_unmanaged.py [91:121]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        target_brain_version = item["simulatorContext"]["purpose"][
                            "target"
                        ]["brainVersion"]
                        target_concept = item["simulatorContext"]["purpose"]["target"][
                            "conceptName"
                        ]

                    rows.append(
                        [
                            name,
                            session_id,
                            action,
                            target_brain_name,
                            target_brain_version,
                            target_concept,
                        ]
                    )
                    dict_rows.append(
                        {
                            "name": name,
                            "sessionId": session_id,
                            "action": action,
                            "targetBrainName": target_brain_name,
                            "targetBrainVersion": target_brain_version,
                            "targetConcept": target_concept,
                        }
                    )
            except KeyError:
                pass  # If it's missing a field, ignore it.

        if len(rows) == 0:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



bonsaicli2/bonsai_cli/commands/simulator_unmanaged.py [147:177]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    target_brain_version = item["simulatorContext"]["purpose"][
                        "target"
                    ]["brainVersion"]
                    target_concept = item["simulatorContext"]["purpose"]["target"][
                        "conceptName"
                    ]

                rows.append(
                    [
                        name,
                        session_id,
                        action,
                        target_brain_name,
                        target_brain_version,
                        target_concept,
                    ]
                )
                dict_rows.append(
                    {
                        "name": name,
                        "sessionId": session_id,
                        "action": action,
                        "targetBrainName": target_brain_name,
                        "targetBrainVersion": target_brain_version,
                        "targetConcept": target_concept,
                    }
                )
            except KeyError:
                pass  # If it's missing a field, ignore it.

            if len(rows) == 0:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



