Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7c6243a

Browse files
committed
FIX: whitespace
1 parent d2c13b4 commit 7c6243a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5136,21 +5136,21 @@ def reduce_C_function(C: array) -> float
51365136
self._process_unit_info([("x", x), ("y", y)], kwargs, convert=False)
51375137

51385138
x, y, C = cbook.delete_masked_points(x, y, C)
5139-
5139+
51405140
# Count the number of data in each hexagon
51415141
x = np.asarray(x, float)
51425142
y = np.asarray(y, float)
5143-
5143+
51445144
(*offsets, accum), (xmin, xmax), (ymin, ymax), (nx, ny) = cbook.hexbin(
51455145
x, y, C, gridsize, xscale, yscale, extent, reduce_C_function, mincnt
51465146
)
51475147
offsets = np.transpose(offsets)
51485148
sx = (xmax - xmin) / nx
51495149
sy = (ymax - ymin) / ny
5150-
5150+
51515151
if C is None:
51525152
C = np.ones(len(x))
5153-
5153+
51545154
polygon = [sx, sy / 3] * np.array(
51555155
[[.5, -.5], [.5, .5], [0., 1.], [-.5, .5], [-.5, -.5], [0., -1.]])
51565156

0 commit comments

Comments
 (0)