Skip to content

Commit

Permalink
Fixed a typo in an expression.
Browse files Browse the repository at this point in the history
  • Loading branch information
neilccbrown committed Jan 21, 2025
1 parent e3ce965 commit 02c4852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ export function generateAllFrameDefinitionTypes(regenerateExistingFrames?: boole
],
colour: "#baded3",
forbiddenChildrenTypes: Object.values(ImportFrameTypesIdentifiers)
.concat(Object.values(StandardFrameTypesIdentifiers).filter((f) => f != CommentFrameTypesIdentifier.comment & f != StandardFrameTypesIdentifiers.varassign))
.concat(Object.values(StandardFrameTypesIdentifiers).filter((f) => f != CommentFrameTypesIdentifier.comment && f != StandardFrameTypesIdentifiers.varassign))
.concat([DefIdentifiers.classdef]),
defaultChildrenTypes: [{...EmptyFrameObject, frameType: FuncDefDefinition, labelSlotsDict: {0: {slotStructures:{fields:[{code:"__init__"}], operators: []}}, 1: {slotStructures:{fields:[{code:""}], operators: []}}}}],

Expand Down

0 comments on commit 02c4852

Please sign in to comment.