소스 검색

comply with black formatter

dinhlongnguyen 1 년 전
부모
커밋
a26dc4a4bc
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      tools/modify_readme.py

+ 3 - 3
tools/modify_readme.py

@@ -4,12 +4,12 @@ import re
 repo_name = sys.argv[1]
 branch_name = sys.argv[2]
 # Regex pattern <img\s+([^>]*?)(?<!['"])(?<!\/)src\s*=\s*(['"])(?!http|\/)(.*?)\2([^>]*?)>
-pattern = re.compile("<img\\s+([^>]*?)(?<![\'\"])(?<!\\/)src\\s*=\\s*([\'\"])(?!http|\\/)(.*?)\\2([^>]*?)>")
+pattern = re.compile("<img\\s+([^>]*?)(?<!['\"])(?<!\\/)src\\s*=\\s*(['\"])(?!http|\\/)(.*?)\\2([^>]*?)>")
 replacement = r'<img \1src="https://raw.githubusercontent.com/Avaiga/{repo_name}/{branch_name}/\3"\4>'
 
-with open('README.md') as readme_file:
+with open("README.md") as readme_file:
     readme_str = readme_file.read()
     modified_readme = re.sub(pattern, replacement.format(repo_name=repo_name, branch_name=branch_name), readme_str)
 
-with open('README.md', 'w') as readme_file:
+with open("README.md", "w") as readme_file:
     readme_file.write(modified_readme)