Skip to content

Commit

Permalink
pcolormesh path
Browse files Browse the repository at this point in the history
  • Loading branch information
t-makaro committed Mar 5, 2019
1 parent 4ad87c9 commit 796651f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion animatplot/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version = (0, 4, 0)
version = (0, 4, 1)
info = ''
__version__ = '.'.join(map(str, version))+info
4 changes: 3 additions & 1 deletion animatplot/blocks/image_like.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ def _update(self, i):
return self.quad

def __len__(self):
return self.C.shape[2]
if self._is_list:
return self.C.shape[0]
return self.C.shape[self.t_axis]

def _make_pcolormesh_slice(self, i, dim):
if self._is_list:
Expand Down

0 comments on commit 796651f

Please sign in to comment.