From 3ec68866a772d647d62e400fe1de2b0463c99f2f Mon Sep 17 00:00:00 2001 From: Gavin Ridley Date: Thu, 16 Jan 2020 16:49:07 -0500 Subject: [PATCH] maybe fix CI? --- openmc/lib/cell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmc/lib/cell.py b/openmc/lib/cell.py index 6ed4bca1e..c4fc43a5b 100644 --- a/openmc/lib/cell.py +++ b/openmc/lib/cell.py @@ -133,7 +133,7 @@ class Cell(_FortranObjectWithID): n = c_int32() _dll.openmc_cell_get_fill(self._index, fill_type, indices, n) - if fill_type.value == 1: + if fill_type.value == 0: if n.value > 1: return [Material(index=i) for i in indices[:n.value]] else: