From 10adce1a67488230df50f5d81c62e5076e6aa2ac Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Mon, 2 Oct 2023 13:10:04 -0400 Subject: [PATCH] docs(sp-repo-review): fix suggestion (#287) --- src/sp_repo_review/checks/pyproject.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sp_repo_review/checks/pyproject.py b/src/sp_repo_review/checks/pyproject.py index 123737d5..db139c25 100644 --- a/src/sp_repo_review/checks/pyproject.py +++ b/src/sp_repo_review/checks/pyproject.py @@ -163,7 +163,7 @@ def check(pyproject: dict[str, Any]) -> bool: ```toml [tool.pytest.ini_options] - addops = ["-ra", "--strict-config", "--strict-markers"] + addopts = ["-ra", "--strict-config", "--strict-markers"] ``` """ options = pyproject["tool"]["pytest"]["ini_options"]