Improve documentation

This commit is contained in:
Unrud
2020-01-13 15:51:10 +01:00
parent 3d7757fa38
commit 2e4924a0da
6 changed files with 29 additions and 1 deletions

View File

@ -46,6 +46,13 @@ def load(configuration):
class BaseWeb:
def __init__(self, configuration):
"""Initialize BaseWeb.
``configuration`` see ``radicale.config`` module.
The ``configuration`` must not change during the lifetime of
this object, it is kept as an internal reference.
"""
self.configuration = configuration
def get(self, environ, base_prefix, path, user):