Skip to content

Commit

Permalink
fix imports in cats
Browse files Browse the repository at this point in the history
  • Loading branch information
fchapoton committed Jan 8, 2025
1 parent e8898f1 commit ca85687
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/sage/categories/examples/operads_with_basis.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# https://www.gnu.org/licenses/
# ****************************************************************************
from sage.misc.cachefunc import cached_method
from sage.categories.all import OperadsWithBasis
from sage.categories.operads_with_basis import OperadsWithBasis
from sage.combinat.free_module import CombinatorialFreeModule
from sage.combinat.words.words import Words

Expand Down
2 changes: 1 addition & 1 deletion src/sage/categories/examples/set_operads.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# https://www.gnu.org/licenses/
# ****************************************************************************
from sage.misc.cachefunc import cached_method
from sage.categories.all import SetOperads
from sage.categories.set_operads import SetOperads
from sage.structure.unique_representation import UniqueRepresentation
from sage.structure.element_wrapper import ElementWrapper
from sage.structure.parent import Parent
Expand Down
2 changes: 1 addition & 1 deletion src/sage/categories/operads.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from sage.categories.category_types import Category_over_base_ring
from sage.categories.set_operads import SetOperads
from sage.categories.all import Modules
from sage.categories.modules import Modules
from sage.misc.cachefunc import cached_method


Expand Down
2 changes: 1 addition & 1 deletion src/sage/categories/operads_with_basis.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from sage.misc.abstract_method import abstract_method
from sage.misc.cachefunc import cached_method
from sage.misc.lazy_attribute import lazy_attribute
from sage.categories.all import Operads
from sage.categories.operads import Operads
from sage.categories.category_types import Category_over_base_ring
from sage.categories.graded_modules_with_basis import GradedModulesWithBasis

Expand Down

0 comments on commit ca85687

Please sign in to comment.