From 0c23c20e222a318df7d1f81ea29d3ddf42aaeecd Mon Sep 17 00:00:00 2001 From: Tobias Meck <tobias.meck@tu-darmstadt.de> Date: Thu, 5 Oct 2023 10:33:35 +0200 Subject: [PATCH] Fix wrong length of frame in example notebook --- minimalbeispiel.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minimalbeispiel.ipynb b/minimalbeispiel.ipynb index 83f191a..748a317 100644 --- a/minimalbeispiel.ipynb +++ b/minimalbeispiel.ipynb @@ -181,7 +181,7 @@ "\n", "with open(\"datasheets/frame.json\") as json_file:\n", " frame = json.load(json_file)\n", - "scooter_frame = LegoComponent(\"scooter frame\", frame[\"3702\"], {\"color\": \"red\"})\n", + "scooter_frame = LegoComponent(\"scooter frame\", frame[\"3703\"], {\"color\": \"red\"})\n", "\n", "# The scooter is our system level assembly, you can choose the AggregationLayer\n", "# But the hiercarchy (SYSTEM > ASSEMBLY > SUBASSEMBLY) must be in order.\n", -- GitLab