From f937a5720ab9bf6a1a01bc91933c21e7d3c8b1a5 Mon Sep 17 00:00:00 2001 From: Remco de Boer <29308176+redeboer@users.noreply.github.com> Date: Thu, 24 Oct 2024 19:47:15 +0200 Subject: [PATCH] FIX: return Tox configuration --- src/compwa_policy/check_dev_files/tox.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compwa_policy/check_dev_files/tox.py b/src/compwa_policy/check_dev_files/tox.py index 0bc61b12..63fccf64 100644 --- a/src/compwa_policy/check_dev_files/tox.py +++ b/src/compwa_policy/check_dev_files/tox.py @@ -84,6 +84,7 @@ def read_tox_config() -> ConfigParser | None: if tox_config_str is not None: config = ConfigParser() config.read_string(tox_config_str) + return config return None