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

Commit

Permalink
src/sage/manifolds/differentiable/degenerate.py: Conditionalize an im…
Browse files Browse the repository at this point in the history
…port with 'if TYPE_CHECKING:'
  • Loading branch information
Matthias Koeppe committed Mar 28, 2022
1 parent 9905ade commit ba751f1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/sage/manifolds/differentiable/degenerate.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,15 @@
# https://www.gnu.org/licenses/
# *****************************************************************************

from __future__ import annotations
from typing import TYPE_CHECKING

from sage.rings.infinity import infinity
from sage.manifolds.structure import DegenerateStructure
from sage.manifolds.differentiable.manifold import DifferentiableManifold
from sage.manifolds.differentiable.metric import DegenerateMetric

if TYPE_CHECKING:
from sage.manifolds.differentiable.metric import DegenerateMetric

###############################################################################

Expand Down

0 comments on commit ba751f1

Please sign in to comment.