Skip to content

Commit 80ee11e

Browse files
author
y-p
committed
ENH: find_undoc_args.py, sort by filename
1 parent 1af52c1 commit 80ee11e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

scripts/find_undoc_args.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ def main():
112112
# only include if there are missing arguments in the docstring (less false positives)
113113
# and there are at least some documented arguments
114114
collect = [e for e in collect if e.undoc_names and len(e.undoc_names) != e.nsig_names]
115+
collect.sort(key=lambda x:x.path)
115116

116117
if args.github_repo:
117118
for i,item in enumerate(collect,1):

0 commit comments

Comments
 (0)