Skip to content

Commit ce434e5

Browse files
committed
style
1 parent 224eef4 commit ce434e5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

numba_cuda/numba/cuda/cudadrv/driver.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3450,13 +3450,13 @@ def inspect_obj_content(objpath: str):
34503450

34513451
try:
34523452
out = subprocess.run(["cuobjdump", objpath], check=True,
3453-
capture_output=True)
3453+
capture_output=True)
34543454
except FileNotFoundError as e:
34553455
msg = ("cuobjdump has not been found. You may need "
3456-
"to install the CUDA toolkit and ensure that "
3457-
"it is available on your PATH.\n")
3456+
"to install the CUDA toolkit and ensure that "
3457+
"it is available on your PATH.\n")
34583458
raise RuntimeError(msg) from e
3459-
3459+
34603460
objtable = out.stdout.decode('utf-8')
34613461
entry_pattern = r"Fatbin (.*) code"
34623462
for line in objtable.split("\n"):

0 commit comments

Comments
 (0)