The type hint says bool, but it is shown in other issues/solutions that it is sometimes a string. This causes IDE warnings I'd like to suppress with the type hint being changed to headless: bool | str = True to allow the case when headless = "virtual"
The type hint says bool, but it is shown in other issues/solutions that it is sometimes a string. This causes IDE warnings I'd like to suppress with the type hint being changed to
headless: bool | str = Trueto allow the case when headless = "virtual"