Skip to content

Commit fc040ed

Browse files
authored
explicitly sort the problems in the solver docs (#273)
1 parent 7e2f49f commit fc040ed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/document_problems.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def doit(pyro_home):
4141
if (parent_solver := p.parts[-2]) == s:
4242

4343
# find all the problems
44-
for prob in p.glob("*.py"):
44+
for prob in sorted(p.glob("*.py")):
4545
if prob.name == "__init__.py":
4646
continue
4747

0 commit comments

Comments
 (0)