We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48dd53f commit a71ab9cCopy full SHA for a71ab9c
src/festim/hydrogen_transport_problem.py
@@ -22,7 +22,6 @@
22
k_B,
23
problem,
24
)
25
-from festim.material import SolubilityLaw
26
from festim import (
27
reaction as _reaction,
28
@@ -39,6 +38,8 @@
39
38
get_interpolation_points,
40
is_it_time_to_export,
41
+from festim.material import SolubilityLaw
42
+
43
from .mesh import CoordinateSystem, Mesh
44
45
__all__ = [
src/festim/mesh/mesh.py
@@ -6,7 +6,8 @@
6
from dolfinx.mesh import Mesh as dolfinx_Mesh
7
from dolfinx.mesh import meshtags
8
9
-__all__= ["CoordinateSystem", "Mesh"]
+__all__ = ["CoordinateSystem", "Mesh"]
10
11
12
class CoordinateSystem(Enum):
13
CARTESIAN = 10
0 commit comments