Skip to content

Commit 5de62ad

Browse files
committed
fix typo
1 parent e18c259 commit 5de62ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/blocks/mrc_steps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ export const pythonFromBlock = function (
248248
let code = 'def steps(self):\n';
249249
code += generator.INDENT + 'if not self._initialized_steps:\n';
250250
code += generator.INDENT.repeat(2) + 'self._current_step = "' + block.mrcStepNames[0] + '"\n';
251-
code += generator.INDENT.repeat(2) + 'self.initialized_steps = True\n\n';
251+
code += generator.INDENT.repeat(2) + 'self._initialized_steps = True\n\n';
252252
code += generator.INDENT + 'if self._current_step == None:\n';
253253
code += generator.INDENT.repeat(2) + 'return\n';
254254

0 commit comments

Comments
 (0)