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/tensorfield_paral.py: Conditionaliz…
Browse files Browse the repository at this point in the history
…e imports with 'if TYPE_CHECKING:'
  • Loading branch information
Matthias Koeppe committed Mar 21, 2022
1 parent eb83a23 commit 6d382df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sage/manifolds/differentiable/tensorfield_paral.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,16 +308,16 @@
from typing import TYPE_CHECKING, Optional, Union

from sage.manifolds.chart import Chart
from sage.manifolds.differentiable.diff_map import DiffMap
from sage.manifolds.differentiable.manifold import DifferentiableManifold
from sage.manifolds.differentiable.tensorfield import TensorField
from sage.parallel.decorate import parallel
from sage.parallel.parallelism import Parallelism
from sage.symbolic.expression import Expression
from sage.symbolic.ring import SR
from sage.tensor.modules.free_module_tensor import FreeModuleTensor

if TYPE_CHECKING:
from sage.manifolds.differentiable.diff_map import DiffMap
from sage.manifolds.differentiable.manifold import DifferentiableManifold
from sage.symbolic.expression import Expression
from sage.tensor.modules.comp import Components


Expand Down

0 comments on commit 6d382df

Please sign in to comment.