Fix pep8 error

new flake8 issue:
- E275 missing whitespace after keyword

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

View File

@ -145,7 +145,7 @@ def no_log_warn(logical_line):
O339 O339
""" """
if logical_line.startswith('LOG.warn('): 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 @core.flake8ext