From f85e9155ec336bf1925297c54bc5e05a407ed476 Mon Sep 17 00:00:00 2001 From: Judah Rand <17158624+judahrand@users.noreply.github.com> Date: Fri, 8 Jul 2022 14:47:57 +0100 Subject: [PATCH] Trust tox4's type conversion --- tox_docker/tox4/config.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tox_docker/tox4/config.py b/tox_docker/tox4/config.py index 3554a97..9940c06 100644 --- a/tox_docker/tox4/config.py +++ b/tox_docker/tox4/config.py @@ -41,10 +41,9 @@ def register_config(self) -> None: ) self.add_config( keys=["privileged"], - of_type=str, - default="false", + of_type=bool, + default=False, desc="give extended privileges to this container", - post_process=getboolean, ) self.add_config( keys=["environment"],