From 2d2a01f4e9fe7d61436fcc050e7d71ca0eafc8ab Mon Sep 17 00:00:00 2001 From: Ryan O'Dea <70209371+ryan-odea@users.noreply.github.com> Date: Thu, 25 Dec 2025 12:08:24 -0800 Subject: [PATCH] fix to compevent models --- pySEQTarget/SEQuential.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pySEQTarget/SEQuential.py b/pySEQTarget/SEQuential.py index 4815ffd..6ffbcca 100644 --- a/pySEQTarget/SEQuential.py +++ b/pySEQTarget/SEQuential.py @@ -342,7 +342,7 @@ def collect(self) -> SEQoutput: } if self.compevent_colname is not None: - compevent_models = [model["compevent"] for model in self.outcome_models] + compevent_models = [model["compevent"] for model in self.outcome_model] else: compevent_models = None diff --git a/pyproject.toml b/pyproject.toml index bf85936..acf55a2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pySEQTarget" -version = "0.10.3" +version = "0.10.4" description = "Sequentially Nested Target Trial Emulation" readme = "README.md" license = {text = "MIT"}