From 2fc98d8a5207e315caf3efe7fd58f1de0403ac38 Mon Sep 17 00:00:00 2001 From: James Williams Date: Wed, 20 Jul 2022 02:21:42 +0000 Subject: [PATCH] fix tasks black --- tasks.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tasks.py b/tasks.py index e21572d..d0e1bf9 100644 --- a/tasks.py +++ b/tasks.py @@ -62,11 +62,13 @@ def docker_compose(context, command, **kwargs): # Linting Tasks + @task def isort(context): """Execute Python isort.""" context.run("isort .") + @task def black(context): """Execute Python Black."""