Skip to content

Commit eef89c0

Browse files
author
Chaluvadi
committed
reformatted manage_array file
1 parent 9dbe5db commit eef89c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arrayfire_wrapper/lib/create_and_modify_array/manage_array.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def get_scalar(arr: AFArray, dtype: Dtype, /) -> int | float | complex | bool |
166166
out = dtype.c_type()
167167
call_from_clib(get_scalar.__name__, ctypes.pointer(out), arr)
168168
if dtype == c32 or dtype == c64:
169-
return complex(out[0], out[1]) # type: ignore
169+
return complex(out[0], out[1]) # type: ignore
170170
else:
171171
return cast(int | float | complex | bool | None, out.value)
172172

0 commit comments

Comments
 (0)