File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ def cycler(label, itr):
123
123
return Cycler ._from_iter (label , itr )
124
124
125
125
126
- class _base_cycler (object ):
126
+ class BaseCycler (object ):
127
127
"""
128
128
Helper base-class to provide composition logic to
129
129
`SingleCycler` and `CompoundCycler`.
@@ -142,7 +142,7 @@ def __mul__(self, other):
142
142
return CompoundCycler (self , other , product )
143
143
144
144
145
- class SingleCycler (_base_cycler ):
145
+ class SingleCycler (BaseCycler ):
146
146
"""
147
147
Class to hold the cycle for a single parameter and handle the
148
148
composition.
@@ -183,7 +183,7 @@ def keys(self):
183
183
return set ([self ._label ])
184
184
185
185
186
- class CompoundCycler (_base_cycler ):
186
+ class CompoundCycler (BaseCycler ):
187
187
"""
188
188
A class to handle cycling multiple artist properties.
189
189
@@ -197,10 +197,10 @@ class CompoundCycler(_base_cycler):
197
197
198
198
Parameters
199
199
----------
200
- left : _base_cycler
200
+ left : BaseCycler
201
201
The 'left' cycler
202
202
203
- right : _base_cycler
203
+ right : BaseCycler
204
204
The 'right' cycler
205
205
206
206
op : function
You can’t perform that action at this time.
0 commit comments