Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion array.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def get_common_dtype(obj1: ArrayIsh, obj2: ArrayIsh,
raise RuntimeError("numpy's as_strided is broken")

as_strided = _as_strided
except Exception:
except Exception: # noqa: BLE001
# stolen from numpy to be compatible with older versions of numpy
class _DummyArray:
""" Dummy object that just exists to hang __array_interface__ dictionaries
Expand Down