Skip to content

Commit b84f6fd

Browse files
committed
Clean up warnings
1 parent c4af155 commit b84f6fd

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/blocks/mrc_jump_to_step.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
* @author [email protected] (Alan Smith)
2121
*/
2222
import * as Blockly from 'blockly';
23-
import {Order} from 'blockly/python';
2423

2524
import {ExtendedPythonGenerator} from '../editor/extended_python_generator';
2625
import {createFieldNonEditableText} from '../fields/FieldNonEditableText';

src/blocks/mrc_steps.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import {Order} from 'blockly/python';
2424

2525
import { MRC_STYLE_STEPS } from '../themes/styles';
2626
import { ExtendedPythonGenerator } from '../editor/extended_python_generator';
27-
import { createStepFieldFlydown, FieldFlydown } from '../fields/field_flydown';
27+
import { createStepFieldFlydown } from '../fields/field_flydown';
2828
import * as stepContainer from './mrc_step_container'
2929

3030
export const BLOCK_NAME = 'mrc_steps';
@@ -75,8 +75,7 @@ const STEPS = {
7575
}
7676
const stepContainerBlock = containerBlock as stepContainer.StepContainerBlock;
7777
const stepItemBlocks: stepContainer.StepItemBlock[] = stepContainerBlock.getStepItemBlocks();
78-
stepItemBlocks.forEach((stepItemBlock) => {
79-
});
78+
8079
this.mrcStepNames = [];
8180
stepItemBlocks.forEach((stepItemBlock) => {
8281
this.mrcStepNames.push(stepItemBlock.getName());

0 commit comments

Comments
 (0)