Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
tschm committed Oct 27, 2024
1 parent f95eb29 commit 5beb1c2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cvx/risk/factor/factor.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
import cvxpy as cvx
import numpy as np

from ..linalg import cholesky
from ..bounds import Bounds
from ..linalg import cholesky
from ..model import Model


Expand Down
2 changes: 1 addition & 1 deletion cvx/risk/sample/sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
import cvxpy as cvx
import numpy as np

from ..linalg import cholesky
from ..bounds import Bounds
from ..linalg import cholesky
from ..model import Model


Expand Down
2 changes: 1 addition & 1 deletion tests/test_risk/test_factor/test_factor.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
import pandas as pd
import pytest

from cvx.risk.linalg import pca as principal_components
from cvx.portfolio.min_risk import minrisk_problem
from cvx.random import rand_cov
from cvx.risk.factor import FactorModel
from cvx.risk.linalg import pca as principal_components


@pytest.fixture()
Expand Down
2 changes: 1 addition & 1 deletion tests/test_risk/test_linalg/test_cholesky.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import numpy as np

from cvx.risk.linalg import cholesky
from cvx.random import rand_cov
from cvx.risk.linalg import cholesky


def test_cholesky():
Expand Down

0 comments on commit 5beb1c2

Please sign in to comment.