From e66fc6776e7a9f694004a9e0e3aa0af2e0257992 Mon Sep 17 00:00:00 2001 From: pseusys Date: Fri, 17 Feb 2023 22:54:06 +0100 Subject: [PATCH] small fixes --- .github/workflows/codestyle.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codestyle.yml b/.github/workflows/codestyle.yml index 3d8c1ac..5ac6780 100644 --- a/.github/workflows/codestyle.yml +++ b/.github/workflows/codestyle.yml @@ -21,4 +21,4 @@ jobs: run: pip install -r requirements.txt - name: Run Codestyle ✔️ - run: flake8 --max-line-length=160 --exclude venv,assets . && black --line-length=160 --check --exclude='/venv/|/assets/' . \ No newline at end of file + run: flake8 --max-line-length=160 --exclude venv,assets . && black --line-length=160 --check --exclude='/venv/|/assets/' . diff --git a/Makefile b/Makefile index baa64a9..d7c3ed0 100644 --- a/Makefile +++ b/Makefile @@ -39,7 +39,7 @@ run-container: lint: venv - @ # Run flake8 linter + @ # Run flake8 and black linters flake8 --max-line-length=160 --exclude venv,assets . black --line-length=160 --check --exclude='/venv/|/assets/' . .PHONY: lint