From 33ae245ed59b4b5c5e4c2e37964e0068771f5aa3 Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Tue, 30 Jan 2024 11:49:59 -0500 Subject: [PATCH] remove leading "- " to avoid false positives --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9f73d36e..c9ad0e50 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -99,7 +99,7 @@ features = [ detached = true features = ["lint"] [tool.hatch.envs.lint.scripts] -all = ["- black", "- flake8", ] +all = ["black", "flake8"] black = "python -m black ." flake8 = "python -m flake8 ."