From 8595edd403040f01a2716ec2d0d5e43a57249dcf Mon Sep 17 00:00:00 2001 From: Conrad Date: Wed, 24 May 2023 10:50:35 +0200 Subject: [PATCH] Removed i and r default options from autopep --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 7d34e40..419a7c1 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -35,7 +35,7 @@ _git_changes() { cd "$GITHUB_ACTION_PATH" echo "Running autopep8..." -autopep8 -i -r $INPUT_CHECKPATH $INPUT_OPTIONS || echo "Problem running autopep8!" +autopep8 $INPUT_CHECKPATH $INPUT_OPTIONS || echo "Problem running autopep8!" if $INPUT_NO_COMMIT; then exit 0