From 50368b82ffd36e0228c68096cc0230a867dddfec Mon Sep 17 00:00:00 2001 From: GStechschulte Date: Tue, 23 Jan 2024 22:48:27 +0100 Subject: [PATCH] delete commented code --- bambi/interpret/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/bambi/interpret/utils.py b/bambi/interpret/utils.py index eb32986fb..a56e23560 100644 --- a/bambi/interpret/utils.py +++ b/bambi/interpret/utils.py @@ -238,7 +238,6 @@ def get_model_covariates(model: Model) -> np.ndarray: for component in term.components: # if the component is a function call, use the argument names if isinstance(component, Call): - # covariates.append([arg.name for arg in component.call.args]) covariates.append( [arg.name for arg in component.call.args if isinstance(arg, LazyVariable)] )