Skip to content

Commit

Permalink
Update combination.py (#51)
Browse files Browse the repository at this point in the history
* Update combination.py

* precommit combination
  • Loading branch information
tschm authored Jun 2, 2023
1 parent 29e479f commit fac907c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cvx/covariance/combination.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ def _map_nested_dicts(ob, func):
"""
if isinstance(ob, dict):
return {k: _map_nested_dicts(v, func) for k, v in ob.items()}
else:
return func(ob)

return func(ob)


def _cholesky_precision(cov):
Expand Down

0 comments on commit fac907c

Please sign in to comment.