edtlib: silence type checker issue
Mypy is complaining about this line for some reason I didn't have time to figure out. Just shut it up for now; I'll look into this when I get around to type annotating edtlib. Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
This commit is contained in:
parent
8e30289b84
commit
a8f7bfbbd4
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ try:
|
|||
# This makes e.g. gen_defines.py more than twice as fast.
|
||||
from yaml import CLoader as Loader
|
||||
except ImportError:
|
||||
from yaml import Loader
|
||||
from yaml import Loader # type: ignore
|
||||
|
||||
from devicetree.dtlib import DT, DTError, to_num, to_nums, Type
|
||||
from devicetree.grutils import Graph
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue