Skip to content

Commit

Permalink
fix fillna
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Kiggins committed Oct 31, 2017
1 parent 37fd36d commit 99e3d7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neuroglia/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,6 @@ def extractor(ev):
tensor = xr.concat(tensor,dim=concat_dim)

if self.fillna:
tensor.fillna(0.0)
tensor = tensor.fillna(0)

return tensor

0 comments on commit 99e3d7d

Please sign in to comment.