Skip to content

Commit

Permalink
feat: using alphabetical order for doc
Browse files Browse the repository at this point in the history
  • Loading branch information
clatapie committed Dec 17, 2024
1 parent 5ece50c commit 8c0f447
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyconverter/xml2py/writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ def write_docs(
"""
for python_command_name in method_list:
for python_command_name in sorted(method_list):
class_content += f" {class_name}.{python_command_name}\n"

# Write the class file
Expand Down

0 comments on commit 8c0f447

Please sign in to comment.