Skip to content

Commit

Permalink
Update PersistentClass.cls to remove ByRef
Browse files Browse the repository at this point in the history
Removing ByRef in the Embedded Python method as it is not eligible syntax anymore
  • Loading branch information
evshvarov authored Aug 31, 2024
1 parent 8445924 commit ca39b88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dc/python/PersistentClass.cls
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ClassMethod CreateRecord(propValue As %VarString = "TestString", ByRef id As %In
return sc
}

ClassMethod CreateRecordPython(propValue As %VarString, ByRef id As %Integer) [ Language = python ]
ClassMethod CreateRecordPython(propValue As %VarString, id As %Integer) [ Language = python ]
{
import iris
obj=iris.cls(__name__)._New()
Expand Down

0 comments on commit ca39b88

Please sign in to comment.