Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pypfopt/base_optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
"""

import collections
from collections.abc import Iterable
import copy
import json
import warnings
from collections.abc import Iterable
from typing import List
import warnings

import cvxpy as cp
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion tests/test_discrete_allocation.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from cvxpy.error import SolverError
import numpy as np
import pandas as pd
import pytest
from cvxpy.error import SolverError

from pypfopt.discrete_allocation import DiscreteAllocation, get_latest_prices
from tests.utilities_for_tests import get_data, setup_efficient_frontier
Expand Down