Skip to content

Commit e33f631

Browse files
committed
formatting fix
1 parent cdca619 commit e33f631

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/nodes/control/TopLevelExceptionHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ private void handleSystemExit(PException e) {
193193
} else if (attribute instanceof PNone) {
194194
exitcode = 0; // "goto done" case in CPython
195195
} else if (attribute instanceof Boolean) {
196-
exitcode = ((boolean)attribute) ? 1 : 0;
196+
exitcode = ((boolean) attribute) ? 1 : 0;
197197
}
198198
if (exitcode != null) {
199199
throw new PythonExitException(this, exitcode);

0 commit comments

Comments
 (0)