Skip to content

Commit

Permalink
style(ruff): ignore D400, docstring first line end with period
Browse files Browse the repository at this point in the history
  • Loading branch information
kiyoon committed Nov 30, 2024
1 parent 710fb30 commit ddbb03c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pdb2pqr/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""PDB2PQR.
"""PDB2PQR
This package takes a PDB file as input and performs optimizations before
yielding a new PDB-style file as output.
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ ignore = [
"D10", # Missing docstring in public module / function / etc.
"D200", # One-line docstring should fit on one line with quotes
"D417", # require documentation for every function parameter.
"D400", # First line should end with a period
"D401", # require an imperative mood for all docstrings.
"DOC201", # missing Return field in docstring
"PTH123", # Path.open should be used instead of built-in open
Expand Down

0 comments on commit ddbb03c

Please sign in to comment.