Commit b426f52d authored by A. Unique TensorFlower's avatar A. Unique TensorFlower
Browse files

Avoid lint warning by using a Python raw string, r'...'.

PiperOrigin-RevId: 316053787
parent 74b847c0
......@@ -42,9 +42,7 @@ _PARAM_RE = re.compile(r"""
\[[^\]]*\])) # list of values
($|,\s*)""", re.VERBOSE)
# pylint: disable=anomalous-backslash-in-string
_CONST_VALUE_RE = re.compile('(\d.*|-\d.*|None)')
# pylint: enable=anomalous-backslash-in-string
_CONST_VALUE_RE = re.compile(r'(\d.*|-\d.*|None)')
class ParamsDict(object):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment