Skip to content

Commit f4e0f0e

Browse files
author
DENEL Bertrand
committed
yapf
1 parent a5eeaed commit f4e0f0e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

mesh-doctor/src/geos/mesh_doctor/actions/checkInternalTags.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def checkInternalTags( mesh: vtk.vtkUnstructuredGrid, options: Options ) -> Resu
201201
# Find volume cells and build tag mapping for 2D cells in one pass
202202
nCells = mesh.GetNumberOfCells()
203203
volumeCells = set()
204-
tagToCells : Dict[int,List[int]] = {} # Map tag values to list of 2D cell IDs
204+
tagToCells: Dict[ int, List[ int ] ] = {} # Map tag values to list of 2D cell IDs
205205

206206
for cellId in tqdm( range( nCells ), desc="Building cell mappings" ):
207207
cellType = mesh.GetCellType( cellId )
@@ -230,7 +230,7 @@ def checkInternalTags( mesh: vtk.vtkUnstructuredGrid, options: Options ) -> Resu
230230
setupLogger.info( f"Checking tag = {tagValue}" )
231231
setupLogger.info( f"{'='*60}" )
232232

233-
elementsByNeighbors: Dict[Any, List[int]] = { 0: [], 1: [], 2: [], 'other': [] }
233+
elementsByNeighbors: Dict[ Any, List[ int ] ] = { 0: [], 1: [], 2: [], 'other': [] }
234234

235235
# Get cells with this tag (pre-filtered)
236236
cellsWithTag = tagToCells.get( tagValue, [] )

0 commit comments

Comments
 (0)