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