Skip to content

Commit ca39b88

Browse files
authored
Update PersistentClass.cls to remove ByRef
Removing ByRef in the Embedded Python method as it is not eligible syntax anymore
1 parent 8445924 commit ca39b88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dc/python/PersistentClass.cls

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ClassMethod CreateRecord(propValue As %VarString = "TestString", ByRef id As %In
1414
return sc
1515
}
1616

17-
ClassMethod CreateRecordPython(propValue As %VarString, ByRef id As %Integer) [ Language = python ]
17+
ClassMethod CreateRecordPython(propValue As %VarString, id As %Integer) [ Language = python ]
1818
{
1919
import iris
2020
obj=iris.cls(__name__)._New()

0 commit comments

Comments
 (0)