Skip to content

Commit fde09b1

Browse files
committed
black complaining about missing , after **kwargs
1 parent bbeb203 commit fde09b1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

pypfopt/black_litterman.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def __init__(
135135
view_confidences=None,
136136
tau=0.05,
137137
risk_aversion=1,
138-
**kwargs
138+
**kwargs,
139139
):
140140
"""
141141
:param cov_matrix: NxN covariance matrix of returns

pypfopt/risk_models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def semicovariance(
181181
benchmark=0.000079,
182182
frequency=252,
183183
log_returns=False,
184-
**kwargs
184+
**kwargs,
185185
):
186186
"""
187187
Estimate the semicovariance matrix, i.e the covariance given that
@@ -290,7 +290,7 @@ def min_cov_determinant(
290290
frequency=252,
291291
random_state=None,
292292
log_returns=False,
293-
**kwargs
293+
**kwargs,
294294
): # pragma: no cover
295295
warnings.warn("min_cov_determinant is deprecated and will be removed in v1.5")
296296

0 commit comments

Comments
 (0)