Skip to content

Commit

Permalink
Fix ruff problems in conversion module.
Browse files Browse the repository at this point in the history
  • Loading branch information
vnmabus committed Jan 18, 2024
1 parent a40f9d9 commit af6e04b
Show file tree
Hide file tree
Showing 2 changed files with 934 additions and 934 deletions.
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,14 @@ select = [
ignore = [
"ANN101", # self does not need to be typed
"D212", # incompatible with D213, which is our preferred style for multiline docstrings
"Q003", # do not change quotation marks to avoid escaping
"PLC0414", # allow explicit re-exports
"S101", # assert is allowed
"TID252", # relative imports allowed
]

[tool.ruff.pydocstyle]
convention = "google"
convention = "google"

[tool.ruff.pylint]
max-args = 7
Loading

0 comments on commit af6e04b

Please sign in to comment.