File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1171,14 +1171,14 @@ def get_majorticklabels(self):
1171
1171
ticks = self .get_major_ticks ()
1172
1172
labels1 = [tick .label1 for tick in ticks if tick .label1 .get_visible ()]
1173
1173
labels2 = [tick .label2 for tick in ticks if tick .label2 .get_visible ()]
1174
- return list ('Text major ticklabel' , labels1 + labels2 )
1174
+ return list (labels1 + labels2 )
1175
1175
1176
1176
def get_minorticklabels (self ):
1177
1177
"""Return a list of Text instances for the minor ticklabels."""
1178
1178
ticks = self .get_minor_ticks ()
1179
1179
labels1 = [tick .label1 for tick in ticks if tick .label1 .get_visible ()]
1180
1180
labels2 = [tick .label2 for tick in ticks if tick .label2 .get_visible ()]
1181
- return list ('Text minor ticklabel' , labels1 + labels2 )
1181
+ return list (labels1 + labels2 )
1182
1182
1183
1183
def get_ticklabels (self , minor = False , which = None ):
1184
1184
"""
You can’t perform that action at this time.
0 commit comments