You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
After upgrading to python 3.12 pylint started complaining about invalid escape sequence '\w' which I traced to pyaml_env and more precisely to line 58 in parse_config:
Create a test_read.py file with the following content:
"""Test for pyaml_env parse_config call"""frompyaml_envimportparse_configdefread_config():
"""Reads config from the app.yaml file"""returnparse_config('app.yaml')
Describe the bug
After upgrading to python 3.12 pylint started complaining about invalid escape sequence '\w' which I traced to pyaml_env and more precisely to line 58 in parse_config:
To Reproduce Steps to reproduce the behavior:
Expected behavior pylint shouldn't complain about a valid pattern.
The complaints can be removed by specifying a raw pattern to compile:
Additional context
The text was updated successfully, but these errors were encountered: