Skip to content

Commit

Permalink
chore: fix forbidden words
Browse files Browse the repository at this point in the history
  • Loading branch information
jfrery committed Mar 27, 2024
1 parent 4c3768d commit dab6256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/concrete/ml/pytest/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit dab6256

Please sign in to comment.