Skip to content

Commit b8f5077

Browse files
authored
shorten line length (pylint suggestion)
1 parent d5dcb0a commit b8f5077

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/test_bin_grid.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,11 @@ def test_histogram_2d_log_log():
177177
bins=[x_grid.edges, y_grid.edges],
178178
weights=weights
179179
)
180-
cell_size = np.log(bin_edges_x[1] / bin_edges_x[0]) * np.log(bin_edges_y[1] / bin_edges_y[0])
180+
cell_size = np.log(
181+
bin_edges_x[1] / bin_edges_x[0]
182+
) * np.log(
183+
bin_edges_y[1] / bin_edges_y[0]
184+
)
181185

182186
# act
183187
data = ppmc.histogram_2d(x_grid, x_vals, y_grid, y_vals, weights)

0 commit comments

Comments
 (0)