From 97b8496d67741a10f30eefbb3d6c97a0e541fba4 Mon Sep 17 00:00:00 2001 From: Romain Rigaux Date: Tue, 16 Feb 2021 13:10:23 -0800 Subject: [PATCH] Use 'args' to Avoid GH workflow warning (#1990) Unexpected input(s) 'black_args', valid inputs are ['entryPoint', 'args'] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 89ef427..178f763 100644 --- a/README.md +++ b/README.md @@ -419,7 +419,7 @@ jobs: - uses: actions/setup-python@v2 - uses: psf/black@stable with: - black_args: ". --check" + args: ". --check" ``` ### Inputs -- 2.39.5