Skip to content

Commit

Permalink
Reformat the troublesome line
Browse files Browse the repository at this point in the history
  • Loading branch information
FranzBangar committed Aug 21, 2024
1 parent 9e36ed7 commit c1db4c7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/classy_blocks/construct/flat/sketches/spline_round.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,8 +336,7 @@ def __init__(
@property
def grid(self) -> List[List[Face]]:
if len(self.faces) > 6:
return [self.faces[::3],
[face for i, face in enumerate(self.faces) if not i % 3 == 0]]
return [self.faces[::3], [face for i, face in enumerate(self.faces) if not i % 3 == 0]]
else:
return super().grid

Expand Down

0 comments on commit c1db4c7

Please sign in to comment.