docstring

This commit is contained in:
meejah 2020-06-12 23:06:33 -06:00 committed by Sajith Sasidharan
parent 9420777810
commit 10715fa26b

View File

@ -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)