Skip to content

Commit e1c92b0

Browse files
committed
Run black
1 parent 4c45e59 commit e1c92b0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

discretize/tensor_mesh.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ def cell_bounds(self):
604604
"""
605605
centers, widths = self.cell_centers, self.h_gridded
606606
if self.dim == 1:
607-
bounds = (centers - widths.ravel() / 2, centers + widths.ravel() /2)
607+
bounds = (centers - widths.ravel() / 2, centers + widths.ravel() / 2)
608608
elif self.dim == 2:
609609
x1 = centers[:, 0] - widths[:, 0] / 2
610610
x2 = centers[:, 0] + widths[:, 0] / 2

0 commit comments

Comments
 (0)