Skip to content

Commit

Permalink
Fix lint errors and warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Jan 16, 2025
1 parent 4588bb0 commit f6ae60b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ include = [
[tool.ruff]
line-length = 120

select = [
lint.select = [
"A", # flake8-builtins
"B", # flake8-bugbear
"D", # pydocstyle
Expand All @@ -98,7 +98,7 @@ select = [
"PERF" # Perflint
]

ignore = [
lint.ignore = [
"E741",
"D202",
"D401",
Expand Down
1 change: 1 addition & 0 deletions pyspelling/filters/html.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# noqa: A005
"""
HTML filter.
Expand Down
1 change: 1 addition & 0 deletions pyspelling/filters/xml.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# noqa: A005
"""
XML filter.
Expand Down

0 comments on commit f6ae60b

Please sign in to comment.