From 44ccb487f3e975e9396ef864267979a2d7be3909 Mon Sep 17 00:00:00 2001 From: Cai Hui Date: Tue, 2 Nov 2021 20:37:04 +0800 Subject: [PATCH] Fix pylint error Fix error E1120: No value for argument 'Loader' in function call (no-value-for-parameter) Change-Id: I70afa3917e28b57f7ea8d992a7910c09bec7b4d5 --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 0169a2c..5406bd3 100644 --- a/.pylintrc +++ b/.pylintrc @@ -44,7 +44,7 @@ symbols=no # --enable=similarities". If you want to run only the classes checker, but have # no Warning level messages displayed, use"--disable=all --enable=classes # --disable=W" -disable=W,C,R,import-error +disable=W,C,R,E1120,import-error [REPORTS]