From 85c19c4037ddc757794c63a04faad07a6ea57ae6 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 22 Dec 2019 15:34:20 +0000 Subject: [PATCH] Apply black --- datasette/app.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/datasette/app.py b/datasette/app.py index 5c1c3e83..2065e356 100644 --- a/datasette/app.py +++ b/datasette/app.py @@ -488,7 +488,10 @@ class Datasette: if hasattr(asyncio, "all_tasks"): tasks = asyncio.all_tasks() d.update( - {"num_tasks": len(tasks), "tasks": [_cleaner_task_str(t) for t in tasks]} + { + "num_tasks": len(tasks), + "tasks": [_cleaner_task_str(t) for t in tasks], + } ) return d