Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Remove remaining imports from sage.interfaces.all
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Dec 10, 2021
1 parent a9b7517 commit 607316f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/sage/rings/polynomial/multi_polynomial_ideal.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,8 @@
# https://www.gnu.org/licenses/
# ****************************************************************************

from sage.interfaces.all import (singular as singular_default,
magma as magma_default)
from sage.interfaces.singular import singular as singular_default
from sage.interfaces.magma import magma as magma_default

from sage.interfaces.expect import StdOutContext

Expand Down
2 changes: 1 addition & 1 deletion src/sage/schemes/elliptic_curves/ell_rational_field.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ def mwrank(self, options=''):
if not options:
from sage.interfaces.mwrank import mwrank
else:
from sage.interfaces.all import Mwrank
from sage.interfaces.mwrank import Mwrank
mwrank = Mwrank(options=options)
return mwrank(list(self.a_invariants()))

Expand Down

0 comments on commit 607316f

Please sign in to comment.