From 769a45d7ff97f5d3bc5de5aa63bd2230654ea9d4 Mon Sep 17 00:00:00 2001 From: wakonig_k Date: Fri, 12 Apr 2024 23:12:30 +0200 Subject: [PATCH] style: moved black config to pyproject.toml --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fdfd68d..4f16835 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -36,7 +36,7 @@ formatter: script: - pip install black isort - isort --check --diff --line-length=100 --profile=black --multi-line=3 --trailing-comma ./ - - black --check --diff --color --line-length=100 ./ + - black --check --diff --color ./ pylint: stage: Formatter