From d43daaa26abd88bc900d0a05d03bc655388c43cb Mon Sep 17 00:00:00 2001 From: Lucas Bickel <116588+hairmare@users.noreply.github.com> Date: Mon, 11 Mar 2024 01:44:09 +0100 Subject: [PATCH] fix(ruff): add missing `,` (#34) --- scaffolder-skeletons/ruff/ruff.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scaffolder-skeletons/ruff/ruff.toml b/scaffolder-skeletons/ruff/ruff.toml index 210a5d4..217628f 100644 --- a/scaffolder-skeletons/ruff/ruff.toml +++ b/scaffolder-skeletons/ruff/ruff.toml @@ -62,7 +62,7 @@ ignore = [ "D", # pydocstyle is optional for tests "ANN", # flake8-annotations are optional for tests "S101", # assert is allow in tests - "S108" # /tmp is allowed in tests since it's expected to be mocked + "S108", # /tmp is allowed in tests since it's expected to be mocked "DTZ001", # tests often run in UTC "INP001", # tests do not need a dunder init ]