Skip to content

Commit 103cd0f

Browse files
committed
Fix lint issues.
1 parent 95d509b commit 103cd0f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

test/test_operations.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ def onlyOnCPU(fn):
9292
accelerator = os.environ.get("PJRT_DEVICE").lower()
9393
return unittest.skipIf(accelerator != "cpu", "PJRT_DEVICE=CUDA required")(fn)
9494

95+
9596
def onlyOnCUDA(fn):
9697
accelerator = os.environ.get("PJRT_DEVICE").lower()
9798
return unittest.skipIf(accelerator != "cuda", "PJRT_DEVICE=CUDA required")(fn)

0 commit comments

Comments
 (0)