Skip to content

Commit af2c371

Browse files
committed
Fix ruff format issue
1 parent f6f0d5e commit af2c371

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

numba_cuda/numba/cuda/compiler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -891,8 +891,8 @@ def kernel_fixup(kernel, debug):
891891
for tm_name, tm_value in type_metadata.operands:
892892
if tm_name == "types":
893893
types = tm_value
894-
null_metadata = ir.Constant(ir.MetaDataType(), None)
895-
types.operands = (null_metadata,) + types.operands[1:]
894+
ret_type = ir.Constant(ir.MetaDataType(), None)
895+
types.operands = (ret_type,) + types.operands[1:]
896896
if config.DUMP_LLVM:
897897
types._clear_string_cache()
898898

0 commit comments

Comments
 (0)