Skip to content

Commit

Permalink
flake
Browse files Browse the repository at this point in the history
  • Loading branch information
pbrubeck committed Nov 7, 2023
1 parent 8a86dbe commit 35d527b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FIAT/reference_element.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ def lattice_iter(start, finish, depth):
if depth == 0:
yield tuple()
elif depth == 1:
for ii in range(start, finish):
yield (ii,)
for ii in range(start, finish):
yield (ii,)
else:
for ii in range(start, finish):
for jj in lattice_iter(start, finish - ii, depth - 1):
Expand Down

0 comments on commit 35d527b

Please sign in to comment.