From a6c5dd4d8acccb21c5b5eaafc0a25279f1c7c890 Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Sat, 17 Sep 2022 12:06:12 -0500 Subject: [PATCH] Formatting --- tests/regression_tests/filter_energyfun/test.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/regression_tests/filter_energyfun/test.py b/tests/regression_tests/filter_energyfun/test.py index 489eec8c07..295b8ebd8f 100644 --- a/tests/regression_tests/filter_energyfun/test.py +++ b/tests/regression_tests/filter_energyfun/test.py @@ -80,9 +80,13 @@ def model(): list(openmc.EnergyFunctionFilter.INTERPOLATION_SCHEMES.keys()) for i_val in interpolation_vals: # breakpoint here is fake and unused - t1d = openmc.data.Tabulated1D(x, y, breakpoints=[1], interpolation=[i_val]) + t1d = openmc.data.Tabulated1D(x, + y, + breakpoints=[1], + interpolation=[i_val]) f = openmc.EnergyFunctionFilter.from_tabulated1d(t1d) - assert f.interpolation == openmc.EnergyFunctionFilter.INTERPOLATION_SCHEMES[i_val] + assert f.interpolation == \ + openmc.EnergyFunctionFilter.INTERPOLATION_SCHEMES[i_val] return model