Skip to content

Commit 098eb7e

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent b2d1843 commit 098eb7e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/amrex/extensions/MultiFab.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,9 @@ def __getitem__(self, index, with_internal_ghosts=False):
539539
# The domain is complete if the number of cells in the box array is the same as
540540
# the number of cells in the minimal box.
541541
cell_centered_box_array = self.box_array().enclosed_cells()
542-
domain_complete = cell_centered_box_array.numPts == cell_centered_box_array.minimal_box().numPts()
542+
domain_complete = (
543+
cell_centered_box_array.numPts == cell_centered_box_array.minimal_box().numPts()
544+
)
543545

544546
if domain_complete or with_internal_ghosts:
545547
result_global = None

0 commit comments

Comments
 (0)