Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
HyeonseoNam committed Nov 16, 2022
1 parent 6e5474e commit d7d064c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions trimesh/remesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,11 +264,11 @@ def loop(vertices,
iterations : int
Number of iterations to run subdivision
"""
try:
try:
from itertools import zip_longest
except:
from itertools import izip_longest as zip_longest # python2
except BaseException:
from itertools import izip_longest as zip_longest # python2

def _subdivide(vertices, faces):
# find the unique edges of our faces
edges, edges_face = faces_to_edges(faces, return_index=True)
Expand Down

0 comments on commit d7d064c

Please sign in to comment.