Skip to content

Commit

Permalink
Switch pydocstyle to pep257
Browse files Browse the repository at this point in the history
  • Loading branch information
codingjoe committed May 5, 2024
1 parent 5a7f46a commit 8fba0b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ section-order = ["future", "standard-library", "third-party", "first-party", "lo
force-wrap-aliases = true

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

[[tool.pydoc-markdown.loaders]]
type = "python"
Expand Down
3 changes: 2 additions & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ def test_func_to_tool():
def fn(
a: int, b: str, blood_types: tests.test_utils.BloodTypes, _context=None
) -> str:
"""Function description.
"""
Describe function.
Args:
a: Description of a.
Expand Down

0 comments on commit 8fba0b7

Please sign in to comment.