Remove exceptional case in python style check (#5917)
author오형석/On-Device Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Fri, 26 Jul 2019 04:19:56 +0000 (13:19 +0900)
committer이한종/On-Device Lab(SR)/Engineer/삼성전자 <hanjoung.lee@samsung.com>
Fri, 26 Jul 2019 04:19:56 +0000 (13:19 +0900)
Remove skip compiler directory check on python style check

Signed-off-by: Hyeongseok Oh <hseok82.oh@samsung.com>
infra/command/format

index 6e94936..39b3b22 100644 (file)
@@ -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}")