Removed redudant negative from sentence

This commit is contained in:
chas s
2023-11-20 16:33:22 -06:00
committed by GitHub
parent e060e729df
commit 10ae0ed9c1

View File

@@ -21,7 +21,7 @@ logger = logging.getLogger(__name__)
def _format_exception_message(space: str, ignore_missing_space: bool) -> None:
msg = (f"The '{space}' space is included into the hyperoptimization "
f"but no parameter for this space was not found in your Strategy. "
f"but no parameter for this space was found in your Strategy. "
)
if ignore_missing_space:
logger.warning(msg + "This space will be ignored.")