From 346deb258f969a2522bef0774ae1576043ac0de7 Mon Sep 17 00:00:00 2001 From: Adam Nelson Date: Thu, 1 Dec 2016 19:27:03 -0500 Subject: [PATCH] for some reason fissionable setter still there --- openmc/mgxs_library.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/openmc/mgxs_library.py b/openmc/mgxs_library.py index 3c2bffcef5..10fda4593a 100644 --- a/openmc/mgxs_library.py +++ b/openmc/mgxs_library.py @@ -360,13 +360,6 @@ class XSdata(object): check_greater_than('atomic_weight_ratio', atomic_weight_ratio, 0.0) self._atomic_weight_ratio = atomic_weight_ratio - @fissionable.setter - def fissionable(self, fissionable): - - # Check validity of type - check_type('fissionable', fissionable, bool) - self._fissionable = fissionable - @temperatures.setter def temperatures(self, temperatures):