@@ -258,11 +258,11 @@ def draw_markers(
258
258
marker_trans ,
259
259
path ,
260
260
trans ,
261
- rgbFace = None ,
261
+ rgbFace = None ,
262
262
):
263
263
# If the markers need to be scaled accurately (such as in log scale), just use the fallback as each will need
264
264
# to be scaled separately.
265
- if (self .__scale_widths ):
265
+ if (self .__scale_widths ):
266
266
super ().draw_markers (gc , marker_path , marker_trans , path , trans , rgbFace )
267
267
return
268
268
@@ -296,7 +296,7 @@ def draw_path_collection(
296
296
offset_position ,
297
297
):
298
298
# If we want accurate scaling for each marker (such as in log scale), just use superclass implementation...
299
- if (self .__scale_widths ):
299
+ if (self .__scale_widths ):
300
300
super ().draw_path_collection (
301
301
gc , master_transform , paths , all_transforms , offsets , offset_trans , facecolors ,
302
302
edgecolors , linewidths , linestyles , antialiaseds , urls , offset_position
@@ -305,7 +305,7 @@ def draw_path_collection(
305
305
306
306
# Otherwise we transform just the offsets, and pass them to the backend.
307
307
print (offsets )
308
- if (np .any (np .isnan (offsets ))):
308
+ if (np .any (np .isnan (offsets ))):
309
309
raise ValueError ("???" )
310
310
offsets = self ._get_transfer_transform (offset_trans ).transform (offsets )
311
311
print (offsets )
0 commit comments