Skip to content

Commit e72327e

Browse files
committed
Fix format
1 parent d96c5fa commit e72327e

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/ThreadModuleBuiltins.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ protected ArgumentClinicProvider getArgumentClinic() {
303303
abstract static class ExitThreadNode extends PythonBuiltinNode {
304304
@Specialization
305305
static Object exit(
306-
@Cached PRaiseNode raiseNode) {
306+
@Cached PRaiseNode raiseNode) {
307307
throw raiseNode.raiseSystemExit(PNone.NONE);
308308
}
309309
}

0 commit comments

Comments
 (0)