@@ -258,11 +258,11 @@ def draw_markers(
258258 marker_trans ,
259259 path ,
260260 trans ,
261- rgbFace = None ,
261+ rgbFace = None ,
262262 ):
263263 # If the markers need to be scaled accurately (such as in log scale), just use the fallback as each will need
264264 # to be scaled separately.
265- if (self .__scale_widths ):
265+ if (self .__scale_widths ):
266266 super ().draw_markers (gc , marker_path , marker_trans , path , trans , rgbFace )
267267 return
268268
@@ -296,7 +296,7 @@ def draw_path_collection(
296296 offset_position ,
297297 ):
298298 # 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 ):
300300 super ().draw_path_collection (
301301 gc , master_transform , paths , all_transforms , offsets , offset_trans , facecolors ,
302302 edgecolors , linewidths , linestyles , antialiaseds , urls , offset_position
@@ -305,7 +305,7 @@ def draw_path_collection(
305305
306306 # Otherwise we transform just the offsets, and pass them to the backend.
307307 print (offsets )
308- if (np .any (np .isnan (offsets ))):
308+ if (np .any (np .isnan (offsets ))):
309309 raise ValueError ("???" )
310310 offsets = self ._get_transfer_transform (offset_trans ).transform (offsets )
311311 print (offsets )
0 commit comments