User inputs are strings, which can be anything. You are hoping they input True or false but what if they input tRUe or FALSE77 or Hunter4 or jgidqopqncb uriwnsvsveyqiaoNcbtjwnak? bool(“tRUe”) doesn’t evaluate to True or False in the way you think it does.
If you want to convert user input to a bool use a lookup dict with some validation rules (like lower casing input text) to sanitize the input. I cannot emphasize this enough - never trust user input.