Whitespace issues

pull/443/head
Wyatt Stanke 9 months ago
parent f81a32e71e
commit f859f7372f
No known key found for this signature in database
GPG Key ID: CE6BA5FFF135536D

@ -22,6 +22,6 @@ jobs:
- name: Install the project dependencies
run: poetry install
- name: Enter the virtual environment
run: source .venv/bin/activate
run: source $VENV
- name: Run the tests
run: poetry run pytest

@ -63,15 +63,14 @@ types-chardet = "^5.0.4.6"
mypy-protobuf = "^3.0.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.1.1"
[tool.ruff]
line-length = 70
line-length = 127
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F"]
select = ["E4", "E7", "E9", "F", "W"]
ignore = []
fixable = ["ALL"]
unfixable = []

Loading…
Cancel
Save