From dab6256a394a462ec979080187a8fe0070d1e8d3 Mon Sep 17 00:00:00 2001 From: jfrery Date: Wed, 27 Mar 2024 18:58:20 +0100 Subject: [PATCH] chore: fix forbidden words --- src/concrete/ml/pytest/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/concrete/ml/pytest/utils.py b/src/concrete/ml/pytest/utils.py index 3c2837e7b6..7e8f574a4b 100644 --- a/src/concrete/ml/pytest/utils.py +++ b/src/concrete/ml/pytest/utils.py @@ -388,7 +388,7 @@ def instantiate_model_generic(model_class, n_bits, **parameters): model_name (str): The type of the model as a string. model (object): The model instance. """ - # Force multi threaded models to be single threaded as it's not working + # Force multi threaded models to be single threaded as it is not working # properly with pytest multi-threading if "n_jobs" in model_class().get_params(): parameters["n_jobs"] = 1