Fixed rST code formatting, refs #834

This commit is contained in:
Simon Willison 2020-06-13 10:59:35 -07:00
commit ae99af2536

View file

@ -1011,6 +1011,8 @@ This hook fires when the Datasette application server first starts up. You can i
Or you can return an async function which will be awaited on startup. Use this option if you need to make any database queries:
.. code-block:: python
@hookimpl
def startup(datasette):
async def inner():
@ -1021,7 +1023,6 @@ Or you can return an async function which will be awaited on startup. Use this o
""", block=True)
return inner
Potential use-cases:
* Run some initialization code for the plugin