Skip to content

Commit 8c0f447

Browse files
committed
feat: using alphabetical order for doc
1 parent 5ece50c commit 8c0f447

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pyconverter/xml2py/writer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ def write_docs(
630630
631631
632632
"""
633-
for python_command_name in method_list:
633+
for python_command_name in sorted(method_list):
634634
class_content += f" {class_name}.{python_command_name}\n"
635635

636636
# Write the class file

0 commit comments

Comments
 (0)