dtlib: remove pylint suppression

This became useless when _init_tokens() was refactored not to use
global variables (in "dtlib: use IntEnum for token IDs"), and the
linter is complaining about it now.

Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
This commit is contained in:
Martí Bolívar 2021-08-19 22:08:50 -07:00 committed by Anas Nashif
commit 6e9e984e60

View file

@ -3,10 +3,6 @@
# Tip: You can view just the documentation with 'pydoc3 devicetree.dtlib' # Tip: You can view just the documentation with 'pydoc3 devicetree.dtlib'
# _init_tokens() builds names dynamically.
#
# pylint: disable=undefined-variable
""" """
A library for extracting information from .dts (devicetree) files. See the A library for extracting information from .dts (devicetree) files. See the
documentation for the DT and Node classes for more information. documentation for the DT and Node classes for more information.