Skip to content

Commit 36cbda3

Browse files
committed
STY: placate flake8
1 parent 5fb7665 commit 36cbda3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/backends/backend_mixed.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def draw_path_collection(self, gc, master_transform, paths, all_transforms,
107107
offset_position):
108108
if self._rasterizing > 0:
109109
bbox = Bbox.null()
110-
#TODO probably faster to merge all coordinates from path using
110+
# TODO probably faster to merge all coordinates from path using
111111
# numpy for large lists of paths, such as the one produced by the
112112
# test case tests/test_backed_pgf.py:test_mixed_mode
113113
for path in paths:
@@ -122,7 +122,7 @@ def draw_quad_mesh(self, gc, master_transform, meshWidth, meshHeight,
122122
coordinates, offsets, offsetTrans, facecolors,
123123
antialiased, edgecolors):
124124
if self._rasterizing > 0:
125-
#TODO should check if this is always Bbox.unit for efficiency
125+
# TODO should check if this is always Bbox.unit for efficiency
126126
bbox = Bbox.null()
127127
cshape = coordinates.shape
128128
flat_coords = coordinates.reshape((cshape[0]*cshape[1], cshape[2]))

0 commit comments

Comments
 (0)