Skip to content

Commit d35fbc1

Browse files
committed
Fixed style
1 parent dfc8233 commit d35fbc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,8 +333,8 @@ Object sleep(VirtualFrame frame, double seconds,
333333

334334
@Specialization(guards = "lib.canBeJavaDouble(secondsObj)")
335335
Object sleepObj(VirtualFrame frame, Object secondsObj,
336-
@Shared("branchProfile") @Cached BranchProfile profile,
337-
@CachedLibrary(limit = "1") PythonObjectLibrary lib) {
336+
@Shared("branchProfile") @Cached BranchProfile profile,
337+
@CachedLibrary(limit = "1") PythonObjectLibrary lib) {
338338
double seconds = lib.asJavaDouble(secondsObj);
339339
double deadline = timeSeconds() + seconds;
340340
doSleep(seconds, deadline);

0 commit comments

Comments
 (0)