commit | a3793098cb86a9cfd12ba2429dfaad217fd559b3 | [log] [tgz] |
---|---|---|
author | Ulf Magnusson <Ulf.Magnusson@nordicsemi.no> | Thu Sep 05 17:33:19 2019 +0200 |
committer | Anas Nashif <anas.nashif@intel.com> | Sat Sep 07 07:55:01 2019 -0400 |
tree | 25bdb5fe8359b419ae47eba7b7ab02a71c3e697f | |
parent | 0d39a10fbbce3f645d88d1bae42914bb750d05ce [diff] |
xtensa: xtensa_intgen.py: Change 'not lvl in ...' to 'lvl not in ...' Use the 'not in' operator. Fixes this pylint warning: arch/xtensa/core/xtensa_intgen.py:77:7: C0113: Consider changing "not lvl in ints_by_lvl" to "lvl not in ints_by_lvl" (unneeded-not) Fixing pylint warnings for a CI check. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>