small fixes

This commit is contained in:
pseusys
2023-02-17 22:54:06 +01:00
parent 1778166ac7
commit e66fc6776e
2 changed files with 2 additions and 2 deletions

View File

@@ -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/' .
run: flake8 --max-line-length=160 --exclude venv,assets . && black --line-length=160 --check --exclude='/venv/|/assets/' .

View File

@@ -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