BUG: Regex for fastMRI matches more URLs than desired (#762)

This commit is contained in:
Anton Schwaighofer 2022-07-19 14:17:31 +01:00 коммит произвёл GitHub
Родитель 88a805ee01
Коммит ca9286c8a6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -333,7 +333,7 @@ def extract_access_tokens(text: str) -> Dict[str, str]:
:return:
"""
result: Dict[str, str] = {}
for match in re.finditer(r'(https://fastmri-dataset.s3.amazonaws.com/)([._a-zA-Z0-9]+)(\?[a-zA-Z0-9=&%]+)', text):
for match in re.finditer(r'(https://fastmri-dataset\.s3\.amazonaws\.com/)([._a-zA-Z0-9]+)(\?[a-zA-Z0-9=&%]+)', text):
file = match.group(2)
token = match.group(3)
if file in result: