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

Commit f6fdd7d

Browse files
author
Travis Scrimshaw
committed
Some last little bit of cleanup.
1 parent d13c368 commit f6fdd7d

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

src/sage/categories/manifolds.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
from sage.misc.abstract_method import abstract_method
1212
from sage.misc.cachefunc import cached_method
13-
from sage.misc.lazy_attribute import lazy_attribute
14-
from sage.misc.lazy_import import LazyImport
1513
from sage.categories.category_types import Category_over_base_ring
1614
from sage.categories.category_with_axiom import CategoryWithAxiom_over_base_ring
1715
from sage.categories.sets_cat import Sets
@@ -67,8 +65,8 @@ def additional_structure(self):
6765
Return ``None``.
6866
6967
Indeed, the category of manifolds defines no new
70-
structure: a morphism of metric spaces between manifolds
71-
is a manifold morphism.
68+
structure: a morphism of topological spaces between
69+
manifolds is a manifold morphism.
7270
7371
.. SEEALSO:: :meth:`Category.additional_structure`
7472

src/sage/categories/metric_spaces.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
# http://www.gnu.org/licenses/
99
#******************************************************************************
1010

11-
from sage.misc.abstract_method import abstract_method
1211
from sage.misc.cachefunc import cached_method
1312
from sage.categories.category import Category
1413
from sage.categories.category_with_axiom import CategoryWithAxiom
@@ -47,7 +46,7 @@ def default_super_categories(cls, category):
4746
4847
Consider ``category=Groups()``. Then, a group `G` with a metric
4948
is simultaneously a topological group by itself, and a
50-
topogological space::
49+
metric space::
5150
5251
sage: Groups().Metric().super_categories()
5352
[Category of topological groups, Category of metric spaces]

src/sage/categories/topological_spaces.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
#******************************************************************************
1010

1111
from sage.misc.cachefunc import cached_method
12-
from sage.misc.lazy_attribute import lazy_class_attribute
13-
from sage.categories.category import Category
1412
from sage.categories.category_with_axiom import CategoryWithAxiom
1513
from sage.categories.covariant_functorial_construction import RegressiveCovariantConstructionCategory
1614
from sage.categories.sets_cat import Sets

0 commit comments

Comments
 (0)