From aa17a32c6528b150b0c9a362d49afcae6384c560 Mon Sep 17 00:00:00 2001 From: Sarah Wang <55766946+sarahsonder@users.noreply.github.com> Date: Thu, 30 May 2024 15:07:07 -0400 Subject: [PATCH] Remove unused imports in demo_C.js (#36) --- CHANGELOG.md | 1 + .../automation_demo/more_specific_demos/demo_C.js | 8 +------- 2 files changed, 2 insertions(+), 7 deletions(-) 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;