Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito committed Apr 29, 2023
1 parent 0e871d3 commit 236b581
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ select = [
"D", # pydocstyle
"DTZ", # flake8-datetimez
"E", # pycodestyle
"ERA", # eradicate
"EXE", # flake8-executable
"F", # Pyflakes
"G", # flake8-logging-format
Expand Down Expand Up @@ -96,10 +97,7 @@ select = [
# "ANN", # flake8-annotations
# "BLE", # flake8-blind-except
# "EM", # flake8-errmsg
# "ERA", # eradicate
# "FBT", # flake8-boolean-trap
# "NPY", # NumPy-specific rules
# "PD", # pandas-vet
# "Q", # flake8-quotes
# "SIM", # flake8-simplify
# "SLF", # flake8-self
Expand All @@ -108,7 +106,7 @@ select = [
]
# Note: use `ruff rule ...` to see explanations of rules
ignore = [
"D203", # no blank linke before class docstring
"D203", # no blank line before class docstring
"D213", # multi-line docstrings should not start at second line
"S110", # allow silently catching errors
]
Expand Down

0 comments on commit 236b581

Please sign in to comment.