Skip to content

Commit

Permalink
explicitly sort the problems in the solver docs (#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
zingale authored Sep 15, 2024
1 parent 7e2f49f commit fc040ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/document_problems.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def doit(pyro_home):
if (parent_solver := p.parts[-2]) == s:

# find all the problems
for prob in p.glob("*.py"):
for prob in sorted(p.glob("*.py")):
if prob.name == "__init__.py":
continue

Expand Down

0 comments on commit fc040ed

Please sign in to comment.