Skip to content

Commit e19cd39

Browse files
committed
Don't name unused variables
1 parent 93b540f commit e19cd39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymc/logprob/basic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ def normal_logcdf(value, mu, sigma):
308308
return _logcdf_helper(rv, value, **kwargs)
309309
except NotImplementedError:
310310
# Try to rewrite rv
311-
fgraph, rv_values, _ = construct_ir_fgraph({rv: value})
311+
fgraph, _, _ = construct_ir_fgraph({rv: value})
312312
[ir_rv] = fgraph.outputs
313313
expr = _logcdf_helper(ir_rv, value, **kwargs)
314314
cleanup_ir([expr])
@@ -390,7 +390,7 @@ def icdf(rv: TensorVariable, value: TensorLike, warn_rvs=None, **kwargs) -> Tens
390390
return _icdf_helper(rv, value, **kwargs)
391391
except NotImplementedError:
392392
# Try to rewrite rv
393-
fgraph, rv_values, _ = construct_ir_fgraph({rv: value})
393+
fgraph, _, _ = construct_ir_fgraph({rv: value})
394394
[ir_rv] = fgraph.outputs
395395
expr = _icdf_helper(ir_rv, value, **kwargs)
396396
cleanup_ir([expr])

0 commit comments

Comments
 (0)