Fix pylint error

Fix error
E1120: No value for argument 'Loader' in function call (no-value-for-parameter)

Change-Id: I70afa3917e28b57f7ea8d992a7910c09bec7b4d5
This commit is contained in:
Cai Hui 2021-11-02 20:37:04 +08:00
parent 9e969c8600
commit 44ccb487f3
1 changed files with 1 additions and 1 deletions

View File

@ -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]