Skip to content

Commit ced607b

Browse files
unbornchikkenpavanky
authored andcommitted
variable naming fixed
1 parent 64a3066 commit ced607b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

arrayfire/array.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@ def _in_display_dims_limit(dims):
7272
return False
7373
if _display_dims_limit is not None:
7474
limit_len = len(_display_dims_limit)
75-
len = len(dims)
76-
if len > limit_len:
75+
dim_len = len(dims)
76+
if dim_len > limit_len:
7777
return False
78-
for i in range(len):
78+
for i in range(dim_len):
7979
if dims[i] > _display_dims_limit[i]:
8080
return False
8181
return True

0 commit comments

Comments
 (0)