Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
f"\S" is interpreted as f"\\S", but a warning is issued by Python: tools/collect-copyright:837: SyntaxWarning: invalid escape sequence '\S' match = re.match(f"^(?P<package>\S+): (?P<file>.*)$", line) Fix this warning by writing f"\\S" explicitly.
- Loading branch information