Skip to content

Commit 7deb63c

Browse files
committed
Minor change to the output of repr
1 parent 88d1c7d commit 7deb63c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arrayfire/array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1040,7 +1040,7 @@ def __repr__(self):
10401040
arr_str = ct.c_char_p(0)
10411041
safe_call(backend.get().af_array_to_string(ct.pointer(arr_str), "", self.arr, 4, True))
10421042

1043-
return 'Type: arrayfire.Array()\nType: %s\n' % \
1043+
return 'arrayfire.Array()\nType: %s' % \
10441044
(to_typename[self.type()]) + to_str(arr_str)
10451045

10461046
def __array__(self):

0 commit comments

Comments
 (0)