fix: trim sigs

This commit is contained in:
Anna Clemens 2022-09-09 07:03:50 +00:00
parent 5a9999c5c4
commit b5fcca2d8c
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ def find_all_signatures():
with io.open(path, encoding='utf8') as f:
data = f.read()
sigs = [x for x in SIG_REGEX.findall(data) if is_valid_sig(x)]
sigs = [x.strip() for x in SIG_REGEX.findall(data) if is_valid_sig(x)]
all_sigs[path] = sigs
return all_sigs