Fix Python warning

fix_get_types.py:14: SyntaxWarning: invalid escape sequence '\('
This commit is contained in:
Khaled Hosny 2024-03-30 02:20:21 +02:00
parent 63973005bc
commit 2bd6124737

View file

@ -11,5 +11,5 @@ args = parser.parse_args ()
with open (args.input, 'r') as inp, open (args.output, 'w') as out:
for l in inp.readlines ():
l = re.sub ('_t_get_type', '_get_type', l)
l = re.sub ('_T \(', ' (', l)
l = re.sub (r'_T \(', ' (', l)
out.write (l)