From 7e61191c7d5a2bdda5d8667628427a43e39311b6 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Thu, 28 Sep 2023 09:15:03 -0400 Subject: [PATCH] docs(sp-repo-review): fix suggestion --- 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"]