Skip to content

Commit 05e7786

Browse files
committed
clean up
1 parent 1e0c5f8 commit 05e7786

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/GraalHPyDebugModuleBuiltins.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ abstract static class HPyDebugSetOnInvalidHandleNode extends PythonUnaryBuiltinN
234234
PNone doInt(VirtualFrame frame, Object callback,
235235
@Cached PyCallableCheckNode callableCheckNode) {
236236
GraalHPyDebugContext hpyDebugContext = getHPyDebugContext(frame, getLanguage(), this);
237-
if (!callableCheckNode.execute(frame, callback)) {
237+
if (!callableCheckNode.execute(callback)) {
238238
throw raise(TypeError, "Expected a callable object");
239239
}
240240
hpyDebugContext.setOnInvalidHandleCallback(callback);

0 commit comments

Comments
 (0)