Skip to content

Commit

Permalink
fix ruff command
Browse files Browse the repository at this point in the history
  • Loading branch information
msarkis-icr committed Nov 27, 2024
1 parent 106efd5 commit f8b47f4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint_and_style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
pip install ruff black
- name: Lint check with ruff
run: |
ruff --target-version=py311 --line-length 79 .
ruff --line-length 79 .
- name: Style check with black
run: |
black ./ --check --line-length 79
black ./ --check --line-length 79
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ line_length = 79

[tool.ruff]
line-length = 79
target-version = "py311"

[tool.hatch.version]
path = "src/version.py"
path = "src/version.py"

0 comments on commit f8b47f4

Please sign in to comment.