From 0e9e64b49c9f8a87a2f329460889ba87035e612d Mon Sep 17 00:00:00 2001 From: driazati Date: Thu, 3 Mar 2022 11:09:47 -0800 Subject: [PATCH] [skip ci][ci] Remove -i from lint scripts This was changed in #8509 to run without checking the file formatting, which would lead to pylint errors like we saw on `main` in https://github.com/apache/tvm/commit/0c836b73ffd9669bcc416515dce6436cbd7d7ebe. --- tests/lint/python_format.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/lint/python_format.sh b/tests/lint/python_format.sh index 21dd4ca7cca6..35fa60bae510 100755 --- a/tests/lint/python_format.sh +++ b/tests/lint/python_format.sh @@ -18,5 +18,5 @@ set -e -./tests/lint/git-black.sh -i HEAD~1 -./tests/lint/git-black.sh -i origin/main +./tests/lint/git-black.sh HEAD~1 +./tests/lint/git-black.sh origin/main