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 4e64b22 commit cfbd683Copy full SHA for cfbd683
cloudinary_cli/utils/utils.py
@@ -49,6 +49,8 @@ def get_help_str(module, block_list=(), allow_list=()):
49
and (f in allow_list or not allow_list),
50
module.__dict__.keys()))
51
52
+ funcs.sort()
53
+
54
template = "{0:" + str(len(max(funcs, key=len)) + 1) + "}({1})" # Gets the maximal length of the functions' names
55
56
return '\n'.join([template.format(f, ", ".join(list(signature(module.__dict__[f]).parameters))) for f in funcs])
0 commit comments