diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ffd2363..3ed3206b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,7 @@ and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - Updated file paths for example files under docs to import the correct file. - Added style and automatic layout tests for the `draw` function. - Updated documentation, tests, and examples to reflect the `isClass` attribute being optional and set to `false` by default. +- Removed unused imports in `demo_C.js`. ## [0.1.0] - 2024-04-16 diff --git a/docs/docs/99-api/examples/automation_demo/more_specific_demos/demo_C.js b/docs/docs/99-api/examples/automation_demo/more_specific_demos/demo_C.js index 473e9dbe..f60c6461 100644 --- a/docs/docs/99-api/examples/automation_demo/more_specific_demos/demo_C.js +++ b/docs/docs/99-api/examples/automation_demo/more_specific_demos/demo_C.js @@ -10,13 +10,7 @@ * - ~/examples/automation_demo/more_specific_demos/draw_automated.svg */ -const { - drawAutomated, - separateJSON, - getSize, - drawAutomatedOtherItems, - MemoryModel, -} = require("memory-viz"); +const { drawAutomated } = require("memory-viz"); const fs = require("fs"); const WIDTH = 1300;