commit | 247d40cf55d211f2790401013eee401d895cd6f0 | [log] [tgz] |
---|---|---|
author | Ulf Magnusson <Ulf.Magnusson@nordicsemi.no> | Mon Sep 02 11:39:28 2019 +0200 |
committer | Anas Nashif <anas.nashif@intel.com> | Sun Sep 08 22:24:45 2019 -0400 |
tree | aaf96af45c0d5b5e31fcffbdf774f4ed0bd4a07f | |
parent | c191156454397bf4324f7ce53ebc451e6030b7f5 [diff] |
gen_isr_tables: Fix pylint warning by using isinstance() Fix this warning, as a preparation for a CI check: arch/common/gen_isr_tables.py:167:11: C0123: Using type() instead of isinstance() for a typecheck. (unidiomatic-typecheck) isinstance() has the advantage that it also handles inheritance, though it doesn't really matter here. It's more common at least. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>