We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 644f863 commit 99511f2Copy full SHA for 99511f2
bayesflow/utils/_docs/_populate_all.py
@@ -18,4 +18,4 @@ def _add_imports_to_all(include_modules: bool | list[str] = False, exclude: list
18
included_vars.append(var_name)
19
elif var_name not in exclude and not var_name.startswith("_"):
20
21
- global_vars["__all__"] = list(set(all_vars).union(included_vars))
+ global_vars["__all__"] = sorted(list(set(all_vars).union(included_vars)))
0 commit comments