Skip to content

Commit

Permalink
Fixed syntax error for genSolTable if Python <= 3.8 (#1085)
Browse files Browse the repository at this point in the history
  • Loading branch information
Serge45 authored Sep 10, 2024
1 parent 25d7a7f commit 99cb1a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensilelite/Tensile/TensileCreateLibrary.py
Original file line number Diff line number Diff line change
Expand Up @@ -1142,7 +1142,7 @@ def generateLogicDataAndSolutions(logicFiles, args):
def libraryIter(lib: MasterSolutionLibrary):
if len(lib.solutions):
for i, s in enumerate(lib.solutions.items()):
yield i, *s
yield (i, *s)
else:
for _, lazyLib in lib.lazyLibraries.items():
yield from libraryIter(lazyLib)
Expand Down

0 comments on commit 99cb1a1

Please sign in to comment.