Skip to content

Commit

Permalink
Update documentation generation
Browse files Browse the repository at this point in the history
  • Loading branch information
tandemdude committed Mar 30, 2024
1 parent 8c0858e commit cd8c484
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/docs/api_reference_generator.py
Expand Up @@ -107,11 +107,11 @@ def write(self) -> bool:

package_lines = [
f" {'/'.join([*self.child_prefix, self.path.name, *package.path.relative_to(self.path).parts])}"
for package in written_packages
for package in sorted(written_packages)
]
module_lines = [
f" {'/'.join([*self.child_prefix, self.path.name, *module.path.relative_to(self.path).parts])}"[:-3]
for module in written_modules
for module in sorted(written_modules)
]

lines = [
Expand Down

0 comments on commit cd8c484

Please sign in to comment.