scripts: logging/dictionary: fix annoying pylint warning

pylint keeps failing and complaining about arg_data_type is
used before assignment. So assign it to None to silence
the warning.

Signed-off-by: Daniel Leung <daniel.leung@intel.com>
This commit is contained in:
Daniel Leung 2024-05-16 17:04:04 -07:00 committed by Alberto Escolar
commit 2eb0ffb7ea

View file

@ -110,6 +110,7 @@ class LogParserV1(LogParser):
Python's string formatting"""
idx = 0
arg_offset = 0
arg_data_type = None
is_parsing = False
do_extract = False