diff --git a/library/src/jit_library/util/make_instance_strings.py b/library/src/jit_library/util/make_instance_strings.py index 4ca873d605..46f08117a4 100644 --- a/library/src/jit_library/util/make_instance_strings.py +++ b/library/src/jit_library/util/make_instance_strings.py @@ -1,7 +1,7 @@ import argparse, re, json, os, sys, file_templates def strip_sequences(str): - matches = re.findall(r'S<\d+(?:,\s*\d+)*>', str) + matches = re.findall(r'S<\s*\d+(?:,\s*\d+)*>', str) for match in matches: str = str.replace(match, match.replace(' ', '')) str = str.replace('S<', "ck::Sequence<")