Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ This repository is a template for a python 🐍 project using the poetry contain
- [Pytest](https://docs.pytest.org/en/7.2.x/): This serves as the codebase test runner.
- [Requests](https://requests.readthedocs.io/en/latest/): This is the project's means of communicating with external APIs.
- [Responses](https://github.com/getsentry/responses): This is used in conjunction with Pytest and Requests to mock API calls in the test module.
- [Numpy Pydoc Styling](https://numpy.org/doc/1.20/docs/howto_document.html): Ruff works to require strict Numpy-style pydoc strings.

### Project Requirements
- Python version: `^3.11`
Expand Down
2 changes: 1 addition & 1 deletion project/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This file serves as the entry point for the project module."""
"""Serves as the entry point for the project module."""

if __name__ == "__main__":
print("oh, what up?")
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ target-version = "py311"
select = ["D"]

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

[tool.ruff.extend-per-file-ignores]
"__init__.py" = ["D104"]
Expand Down
2 changes: 1 addition & 1 deletion test/test_example.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This file serves as an example of a basic test."""
"""Serves as an example of a basic test."""


def test_example():
Expand Down