From 10287926e99e5543f67a72d38a595ae2b4084d71 Mon Sep 17 00:00:00 2001 From: Vinay-Umrethe Date: Thu, 4 Jun 2026 19:33:31 +0530 Subject: [PATCH] simplify --- src/heretic/main.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/heretic/main.py b/src/heretic/main.py index 625a6cc..cc385a9 100644 --- a/src/heretic/main.py +++ b/src/heretic/main.py @@ -79,11 +79,9 @@ if not _is_help_invocation(): _BOOTSTRAP_REPRODUCTION_INFORMATION = _load_reproduction_information_bootstrap( reproduce_path ) - requirements = _BOOTSTRAP_REPRODUCTION_INFORMATION.get("environment", {}).get( - "requirements" + _install_reproduction_requirements( + _BOOTSTRAP_REPRODUCTION_INFORMATION["environment"]["requirements"] ) - if requirements: - _install_reproduction_requirements(requirements) from .config import Settings