From b7c22a55245c5f2f52c0cc78d5849ac363129d83 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=98=A4=ED=98=95=EC=84=9D/On-Device=20Lab=28SR=29/Staff?= =?utf8?q?=20Engineer/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Fri, 26 Jul 2019 13:19:56 +0900 Subject: [PATCH] Remove exceptional case in python style check (#5917) Remove skip compiler directory check on python style check Signed-off-by: Hyeongseok Oh --- infra/command/format | 5 ----- 1 file changed, 5 deletions(-) diff --git a/infra/command/format b/infra/command/format index 6e94936..39b3b22 100644 --- a/infra/command/format +++ b/infra/command/format @@ -119,11 +119,6 @@ function check_python_files() { # Check python files FILES_TO_CHECK_PYTHON=() for f in ${FILES_TO_CHECK[@]}; do - # Manually ignore style checking - if [[ ${f} == compiler/* ]]; then - continue - fi - # File extension to check if [[ ${f} == *.py ]]; then FILES_TO_CHECK_PYTHON+=("${f}") -- 2.7.4