Skip to content

Commit a71ab9c

Browse files
committed
Ruff format
1 parent 48dd53f commit a71ab9c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/festim/hydrogen_transport_problem.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
k_B,
2323
problem,
2424
)
25-
from festim.material import SolubilityLaw
2625
from festim import (
2726
reaction as _reaction,
2827
)
@@ -39,6 +38,8 @@
3938
get_interpolation_points,
4039
is_it_time_to_export,
4140
)
41+
from festim.material import SolubilityLaw
42+
4243
from .mesh import CoordinateSystem, Mesh
4344

4445
__all__ = [

src/festim/mesh/mesh.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
from dolfinx.mesh import Mesh as dolfinx_Mesh
77
from dolfinx.mesh import meshtags
88

9-
__all__= ["CoordinateSystem", "Mesh"]
9+
__all__ = ["CoordinateSystem", "Mesh"]
10+
1011

1112
class CoordinateSystem(Enum):
1213
CARTESIAN = 10

0 commit comments

Comments
 (0)