From 449e7cc2d450fd398d700690895b4e18a49812bf Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 5 Jan 2024 11:12:45 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- source/tests/test_model_format_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/tests/test_model_format_utils.py b/source/tests/test_model_format_utils.py index 631aece626..af8c4361c8 100644 --- a/source/tests/test_model_format_utils.py +++ b/source/tests/test_model_format_utils.py @@ -33,7 +33,7 @@ def test_serialize_deserize(self): nl1 = NativeLayer.deserialize(nl0.serialize()) inp_shap = [ww.shape[0]] if ashp is not None: - inp_shap = ashp + inp_shap + inp_shap = ashp + inp_shap inp = np.arange(np.prod(inp_shap)).reshape(inp_shap) np.testing.assert_allclose(nl0.call(inp), nl1.call(inp))