aboutsummaryrefslogtreecommitdiff
path: root/describe.py
diff options
context:
space:
mode:
authorAnthonios Partheniou <partheniou@google.com>2020-12-14 14:24:19 -0500
committerGitHub <noreply@github.com>2020-12-14 19:24:19 +0000
commitb1b0c83ae0737e7b63cb77e4e7757213a216b88e (patch)
tree66969b42189a26fed9d3b731dbd86da3c51d4b9f /describe.py
parent2c6d0297851c806ef850ca23686c51ca5878ac48 (diff)
downloadgoogle-api-python-client-b1b0c83ae0737e7b63cb77e4e7757213a216b88e.tar.gz
docs: Reduce noisy changes in docs regen (#1135)
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [x] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/google-api-python-client/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [x] Ensure the tests and linter pass - [x] Code coverage does not decrease (if any source code was changed) - [x] Appropriate docs were updated (if necessary) Fixes #386 🦕
Diffstat (limited to 'describe.py')
-rwxr-xr-xdescribe.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/describe.py b/describe.py
index 2537e7c06..0b7d10f3d 100755
--- a/describe.py
+++ b/describe.py
@@ -234,7 +234,7 @@ def method_params(doc):
pname = m.group(1)
desc = m.group(2)
add_param(pname, desc)
- parameters = ", ".join(parameters)
+ parameters = ", ".join(sorted(parameters))
else:
parameters = ""
return parameters