Skip to content

Commit

Permalink
[Fix] Variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastienTainon committed Aug 28, 2024
1 parent d31ed37 commit 68b2301
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/stepper/python/analysis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export const analyseSkulptScope = function(suspension: any, excludedVariableName
}

// This is an object of a class exported by a module, we don't want to display it in analysis
if ('object' === typeof value && value.__variableName) {
if ('object' === typeof value && value?.$d?.__variableName) {
continue;
}

Expand Down

0 comments on commit 68b2301

Please sign in to comment.