Skip to content

Commit

Permalink
MAINT: Use relative imports
Browse files Browse the repository at this point in the history
... This allows seamless usage from within scipy
  • Loading branch information
HaoZeke committed Oct 14, 2023
1 parent fcd2dfc commit 325d535
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion highspy/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from highspy.highs import Highs
from .highs import Highs
4 changes: 2 additions & 2 deletions highspy/highs.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from highspy._highs import simplex_constants as simpc
from highspy import _highs as _h
from ._highs import simplex_constants as simpc
from . import _highs as _h
from itertools import groupby
from operator import itemgetter
from decimal import Decimal
Expand Down

0 comments on commit 325d535

Please sign in to comment.