Fix pep8 error

new flake8 issue:
- E275 missing whitespace after keyword

Change-Id: I4dd4e7dabe71d0a81eaba9bdad6969911a395429
(cherry picked from commit 6e7ce65ce6)
This commit is contained in:
Gregory Thiemonge 2023-04-19 10:55:39 +02:00 committed by Tom Weininger
parent 11512bf612
commit c940f7a064

View File

@ -145,7 +145,7 @@ def no_log_warn(logical_line):
O339
"""
if logical_line.startswith('LOG.warn('):
yield(0, "O339:Use LOG.warning() rather than LOG.warn()")
yield (0, "O339:Use LOG.warning() rather than LOG.warn()")
@core.flake8ext