(self, root)
| 156 | """ |
| 157 | |
| 158 | def __init__(self, root): |
| 159 | self.root = root.removesuffix("/") |
| 160 | self.docs = None |
| 161 | self._text = None |
| 162 | self.last_modified = None |
| 163 | |
| 164 | def update(self): |
| 165 | keys = web.ctx.site.things({"type": "/type/rawtext", "key~": self.root + "/*"}) |
nothing calls this directly
no outgoing calls
no test coverage detected