From c64e78634d7402df1348cc2ed02ec1559eb851d6 Mon Sep 17 00:00:00 2001 From: meejah Date: Fri, 12 Jun 2020 23:06:33 -0600 Subject: [PATCH] docstring --- src/allmydata/testing/web.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/allmydata/testing/web.py b/src/allmydata/testing/web.py index 7d9b5730b..64e615cd6 100644 --- a/src/allmydata/testing/web.py +++ b/src/allmydata/testing/web.py @@ -54,6 +54,9 @@ class _FakeTahoeRoot(Resource, object): """ def __init__(self, uri=None): + """ + :param uri: a Resource to handle the `/uri` tree. + """ Resource.__init__(self) # this is an old-style class :( self._uri = uri self.putChild(b"uri", self._uri)