Skip to content
Snippets Groups Projects
Commit 17ff0c9f authored by David Hammer's avatar David Hammer
Browse files

Fix: replace deprecated np.bool with bool

parent 5b46b3be
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,7 @@ class FrameselectionFriend:
if self._enabled and self._arbiter in sources:
return np.array(
sources[self._arbiter][0]["data.dataFramePattern"], copy=False
).astype(np.bool, copy=False)
).astype(bool, copy=False)
else:
return None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment