Skip to content

Commit e97efc7

Browse files
committed
Add comments for unused variables in _predict unpacking
Added comments to clarify the purpose of unused variables in the tuple unpacking from self._predict, improving code readability.
1 parent b002868 commit e97efc7

File tree

1 file changed

+2
-1
lines changed
  • src/non_local_detector/models

1 file changed

+2
-1
lines changed

src/non_local_detector/models/base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1238,7 +1238,8 @@ def estimate_parameters(
12381238
causal_state_probabilities,
12391239
predictive_state_probabilities,
12401240
log_likelihood,
1241-
_,
1241+
_, # causal_posterior
1242+
_, # predictive_posterior
12421243
) = self._predict(
12431244
time=time,
12441245
log_likelihood_args=log_likelihood_args,

0 commit comments

Comments
 (0)