Skip to content

Commit

Permalink
fix py2 pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
marscher committed Jun 18, 2018
1 parent ffdfe62 commit 174ebb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyemma/coordinates/data/feature_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,5 +358,5 @@ def _create_patched_iter(self, filename, itraj, skip=0, stride=1, atom_indices=N

@EncapsulatedIterator.chunksize.setter
def chunksize(self, value):
super(FeatureReaderIterator, __class__).chunksize.__set__(self, value)
super(FeatureReaderIterator, self.__class__).chunksize.__set__(self, value)
self._it.chunksize = value

0 comments on commit 174ebb0

Please sign in to comment.