Skip to content

Fix invalid escape sequence in stm32mp157c-lxa-tac-gen1.jinja2

All string literals in jinja templates follow the Python string literal rules. The \( is not a valid escape sequence. To declare \( string use \\( which has an escaped backslash.

Otherwise following warning would be produced:

tests/lava_scheduler_app/test_templates.py::TestTemplates::test_all_templates
tests/lava_scheduler_app/test_templates.py::TestTemplates::test_all_template_connections
  /usr/lib/python3/dist-packages/jinja2/lexer.py:646: DeprecationWarning: invalid escape sequence '\('
    self._normalize_newlines(value[1:-1])
Edited by Igor Ponomarev

Merge request reports