fix DeprecationWarning (#7834)

in `tests/test_utils_check_copies.py` I was getting intermittently:
```
utils/check_copies.py:52
  /mnt/nvme1/code/transformers-comet/utils/check_copies.py:52: DeprecationWarning: invalid escape sequence \s
    while line_index < len(lines) and re.search(f"^{indent}(class|def)\s+{name}", lines[line_index]) is None:
```
So this should fix it.
This commit is contained in:
Stas Bekman
2020-10-15 13:21:09 -07:00
committed by GitHub
parent 9c71cca316
commit a5a8eeb772

View File

@@ -49,7 +49,7 @@ def find_code_in_transformers(object_name):
indent = "" indent = ""
line_index = 0 line_index = 0
for name in parts[i + 1 :]: for name in parts[i + 1 :]:
while line_index < len(lines) and re.search(f"^{indent}(class|def)\s+{name}", lines[line_index]) is None: while line_index < len(lines) and re.search(fr"^{indent}(class|def)\s+{name}", lines[line_index]) is None:
line_index += 1 line_index += 1
indent += " " indent += " "
line_index += 1 line_index += 1