We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64a3066 commit ced607bCopy full SHA for ced607b
arrayfire/array.py
@@ -72,10 +72,10 @@ def _in_display_dims_limit(dims):
72
return False
73
if _display_dims_limit is not None:
74
limit_len = len(_display_dims_limit)
75
- len = len(dims)
76
- if len > limit_len:
+ dim_len = len(dims)
+ if dim_len > limit_len:
77
78
- for i in range(len):
+ for i in range(dim_len):
79
if dims[i] > _display_dims_limit[i]:
80
81
return True
0 commit comments