From 2b4fa56ca39ffb169945bc817199540dd05d69f0 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Thu, 12 Mar 2026 10:53:33 -0500 Subject: [PATCH] Style fixes --- openmc/deplete/abc.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/openmc/deplete/abc.py b/openmc/deplete/abc.py index b6cc6fe73..c98b3b2c7 100644 --- a/openmc/deplete/abc.py +++ b/openmc/deplete/abc.py @@ -1158,7 +1158,7 @@ class Integrator(ABC): ... k_tol=1e-4 ... ) - Add keff search that sets the U235 density directly: + Add keff search that adjusts the U235 density: >>> def set_u235_density(u235_density): ... # Get the material from openmc.lib @@ -1181,12 +1181,7 @@ class Integrator(ABC): """ self._keff_search_control = _KeffSearchControl( - self.operator, - function, - x0, - x1, - bracket, - **search_kwargs) + self.operator, function, x0, x1, bracket, **search_kwargs) @add_params class SIIntegrator(Integrator):