Skip to content
Snippets Groups Projects
Commit dba71c13 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

TrigHLTJetHypo: use raw string for escape sequences (flake8 fix)

parent ad941759
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ from __future__ import absolute_import
import re
# substrings that cannot occur in any chainPartName for simple chains.
reject_substr = ( # noqa: W605
reject_substr = (
# 'gsc',
'ion',
'dphi',
......@@ -13,7 +13,7 @@ reject_substr = ( # noqa: W605
'0i1',
'1i2',
'dphi',
'agg\d',)
r'agg\d',)
reject_substr_res = re.compile(r'%s' % '|'.join(reject_substr))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment