From 5e30f4e26883c8b46dcaec849a2c6125763a26eb Mon Sep 17 00:00:00 2001 From: Mike Koss <koss@google.com> Date: Wed, 30 Nov 2016 12:50:27 -0800 Subject: [PATCH] Reverse :type and :param to standard ordering. --- firestore/google/cloud/firestore/path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firestore/google/cloud/firestore/path.py b/firestore/google/cloud/firestore/path.py index fe9f8f488118..61696120bbb8 100644 --- a/firestore/google/cloud/firestore/path.py +++ b/firestore/google/cloud/firestore/path.py @@ -48,8 +48,8 @@ class Path(object): doc = Path.from_string('documents/my-document') sub_collection = doc.child('sub-collection') - :param parts: Sequence of names of the parts of a path. :type parts: list of str or int + :param parts: Sequence of names of the parts of a path. """ def __init__(self, *parts):