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

Commit

Permalink
sage.tensor.modules: Remove unnecessary uses of symbolic functions
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Aug 24, 2021
1 parent 488ced5 commit ac82dd2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/sage/tensor/modules/comp.py
Original file line number Diff line number Diff line change
Expand Up @@ -5388,7 +5388,7 @@ def interior_product(self, other):
True
"""
from sage.functions.other import factorial
from sage.arith.all import factorial
# Sanity checks:
if not isinstance(other, CompFullyAntiSym):
raise TypeError("{} is not a fully antisymmetric ".format(other) +
Expand Down
4 changes: 2 additions & 2 deletions src/sage/tensor/modules/ext_pow_free_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def __init__(self, fmodule, degree, name=None, latex_name=None):
sage: TestSuite(A).run()
"""
from sage.functions.other import binomial
from sage.arith.all import binomial
from sage.typeset.unicode_characters import unicode_bigwedge
self._fmodule = fmodule
self._degree = ZZ(degree)
Expand Down Expand Up @@ -631,7 +631,7 @@ def __init__(self, fmodule, degree, name=None, latex_name=None):
sage: TestSuite(A).run()
"""
from sage.functions.other import binomial
from sage.arith.all import binomial
from sage.typeset.unicode_characters import unicode_bigwedge
self._fmodule = fmodule
self._degree = ZZ(degree)
Expand Down

0 comments on commit ac82dd2

Please sign in to comment.