Fixed rST code formatting, refs #834

pull/844/head
Simon Willison 2020-06-13 10:59:35 -07:00
rodzic 72ae975156
commit ae99af2536
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

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