From 159ea24e7b549a69db3f0fdc92120353c6f26e33 Mon Sep 17 00:00:00 2001 From: "Felt, Nicholas" Date: Tue, 27 Aug 2024 09:23:52 -0700 Subject: [PATCH] docs: Update example to use proper json syntax --- workflows/update-python-and-pre-commit-dependencies.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflows/update-python-and-pre-commit-dependencies.md b/workflows/update-python-and-pre-commit-dependencies.md index a9101e7b..2345f31d 100644 --- a/workflows/update-python-and-pre-commit-dependencies.md +++ b/workflows/update-python-and-pre-commit-dependencies.md @@ -60,7 +60,7 @@ jobs: with: commit-user-name: 'User Name' commit-user-email: 'user-email' - dependency-dict: '{"dev": ("pylint", "ruff"), "tests": ("ruff")}' # optional, but without it nothing will get updated by Poetry + dependency-dict: '{"dev": ["pylint", "ruff"], "tests": ["ruff"]}' # optional, but without it nothing will get updated by Poetry update-pre-commit: true # optional run-pre-commit: true # optional pre-commit-hook-skip-list: pylint,pyright,pyroma,poetry-audit # optional, hooks that don't auto-fix things can (and probably should be) skipped