summaryrefslogtreecommitdiff
path: root/infra
diff options
context:
space:
mode:
author오형석/On-Device Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>2019-07-26 13:19:56 +0900
committer이한종/On-Device Lab(SR)/Engineer/삼성전자 <hanjoung.lee@samsung.com>2019-07-26 13:19:56 +0900
commitb7c22a55245c5f2f52c0cc78d5849ac363129d83 (patch)
tree36e10e5cc8225f67d5e740443f85847f2be648ce /infra
parent263373ee5f03d647a19ee988628040a409161089 (diff)
downloadnnfw-b7c22a55245c5f2f52c0cc78d5849ac363129d83.tar.gz
nnfw-b7c22a55245c5f2f52c0cc78d5849ac363129d83.tar.bz2
nnfw-b7c22a55245c5f2f52c0cc78d5849ac363129d83.zip
Remove exceptional case in python style check (#5917)
Remove skip compiler directory check on python style check Signed-off-by: Hyeongseok Oh <hseok82.oh@samsung.com>
Diffstat (limited to 'infra')
-rw-r--r--infra/command/format5
1 files changed, 0 insertions, 5 deletions
diff --git a/infra/command/format b/infra/command/format
index 6e949369a..39b3b2213 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}")