Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
import time
from datasette import hookimpl
@hookimpl
def prepare_connection(conn):
conn.create_function("sleep", 1, lambda n: time.sleep(float(n)))