Skip to content

Commit 48a78b2

Browse files
committed
yapf formatting
1 parent cf9209d commit 48a78b2

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

geos-mesh/tests/test_generate_fractures.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
from geos.mesh.doctor.checks.generate_fractures import ( __split_mesh_on_fractures, Options, FracturePolicy,
1212
Coordinates3D, IDMapping )
1313

14-
1514
FaceNodesCoords = tuple[ tuple[ float ] ]
1615
IDMatrix = Sequence[ Sequence[ int ] ]
1716

@@ -54,8 +53,12 @@ def __build_test_case( xs: tuple[ numpy.ndarray, numpy.ndarray, numpy.ndarray ],
5453
else:
5554
fv = frozenset( field_values )
5655

57-
options = Options( policy=policy, field="attribute", field_values_combined=fv, field_values_per_fracture=[ fv ],
58-
mesh_VtkOutput=None, all_fractures_VtkOutput=None )
56+
options = Options( policy=policy,
57+
field="attribute",
58+
field_values_combined=fv,
59+
field_values_per_fracture=[ fv ],
60+
mesh_VtkOutput=None,
61+
all_fractures_VtkOutput=None )
5962
return mesh, options
6063

6164

@@ -324,7 +327,7 @@ def test_copy_fields_when_splitting_mesh():
324327
options = Options( policy=FracturePolicy.INTERNAL_SURFACES,
325328
field="TestField",
326329
field_values_combined=frozenset( map( int, [ "9" ] ) ),
327-
field_values_per_fracture=[frozenset( map( int, [ "9" ] ) )],
330+
field_values_per_fracture=[ frozenset( map( int, [ "9" ] ) ) ],
328331
mesh_VtkOutput=None,
329332
all_fractures_VtkOutput=None )
330333
main_mesh, fracture_meshes = __split_mesh_on_fractures( mesh, options )

0 commit comments

Comments
 (0)