From 22b1fe29eb24eb33a8211d4861808225352ff89d Mon Sep 17 00:00:00 2001 From: church89 Date: Mon, 19 Jan 2026 14:41:43 +0100 Subject: [PATCH] minor fix --- openmc/search.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openmc/search.py b/openmc/search.py index 7566f57cb..cd626e4f7 100644 --- a/openmc/search.py +++ b/openmc/search.py @@ -201,4 +201,5 @@ def search_for_keff(model_builder, initial_guess=None, target=1.0, # Perform the search zero_value = root_finder(**args) - return zero_value, guesses, results \ No newline at end of file + return zero_value, guesses, results + \ No newline at end of file