Skip to content

Commit

Permalink
fix linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Miepee authored Apr 7, 2024
1 parent cd5bea6 commit f58fb54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ filterwarnings = [

[tool.ruff]
line-length = 120
select = ["E", "F", "W", "C90", "I", "UP"]
src = ["src"]
lint.select = ["E", "F", "W", "C90", "I", "UP"]
lint.src = ["src"]

# Version to target for generated code.
target-version = "py38"

[tool.ruff.mccabe]
# Flag errors (`C901`) whenever the complexity level exceeds 25.
# Defaults to 10, but we're being very flexible right now
max-complexity = 25
max-complexity = 25

0 comments on commit f58fb54

Please sign in to comment.