Skip to content

Commit 7cd4da7

Browse files
committed
fix style
1 parent 3d631a5 commit 7cd4da7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2024,7 +2024,8 @@ protected ArgumentClinicProvider getArgumentClinic() {
20242024
@Specialization
20252025
int sysconf(String mask) {
20262026
if ("SC_CLK_TCK".equals(mask)) {
2027-
return 100; // it's 100 on most default kernel configs. TODO: use real value through NFI
2027+
return 100; // it's 100 on most default kernel configs. TODO: use real value through
2028+
// NFI
20282029
}
20292030
throw raise(PythonBuiltinClassType.ValueError, "unrecognized configuration name: %s", mask);
20302031
}

0 commit comments

Comments
 (0)