Skip to content

Commit 72e99c2

Browse files
committed
No need to override __getattribute__ method
NumPy and CuPy used default one also.
1 parent bcfe45d commit 72e99c2

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

dpnp/dpnp_array.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,8 +307,6 @@ def __ge__(self, other, /):
307307
r"""Return :math:`\text{self >= value}`."""
308308
return dpnp.greater_equal(self, other)
309309

310-
# '__getattribute__',
311-
312310
def __getitem__(self, key, /):
313311
r"""Return :math:`\text{self[key]}`."""
314312
key = _get_unwrapped_index_key(key)

0 commit comments

Comments
 (0)