Skip to content

Commit

Permalink
Update merge.py of gui subpackage to not use deprecated np.bool
Browse files Browse the repository at this point in the history
  • Loading branch information
carsen-stringer committed Nov 23, 2023
1 parent 0629e4a commit 6cfd8b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion suite2p/gui/merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ def set_merge_list(self, parent, goodind):
self.n = 0
if len(self.merge_list) > 0:
self.suggestMerge.setEnabled(True)
self.unmerged = np.ones(len(self.merge_list), np.bool)
self.unmerged = np.ones(len(self.merge_list), bool)
self.suggest_merge(parent)

def suggest_merge(self, parent):
Expand Down

0 comments on commit 6cfd8b6

Please sign in to comment.