From 96c6b9489bd3437e33168e1571f5e71eccf4866b Mon Sep 17 00:00:00 2001 From: Ivan Schaller Date: Mon, 20 Jun 2022 22:47:59 +0200 Subject: [PATCH] fix isort with black --- .woodpecker/tests.yml | 2 +- mangadlp/app.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.woodpecker/tests.yml b/.woodpecker/tests.yml index 7302162..0a867d6 100644 --- a/.woodpecker/tests.yml +++ b/.woodpecker/tests.yml @@ -29,7 +29,7 @@ pipeline: image: 'cr.44net.ch/drone-plugins/test' pull: true commands: - - isort --check-only --diff . + - isort --profile black --check-only --diff . # check static typing - python test-mypy: diff --git a/mangadlp/app.py b/mangadlp/app.py index 2f4162d..407df2c 100644 --- a/mangadlp/app.py +++ b/mangadlp/app.py @@ -6,6 +6,7 @@ from typing import Any import mangadlp.downloader as downloader import mangadlp.utils as utils + # supported api's from mangadlp.api.mangadex import Mangadex