浏览代码

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]
 repo_name = sys.argv[1]
 branch_name = sys.argv[2]
 branch_name = sys.argv[2]
 # Regex pattern <img\s+([^>]*?)(?<!['"])(?<!\/)src\s*=\s*(['"])(?!http|\/)(.*?)\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>'
 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()
     readme_str = readme_file.read()
     modified_readme = re.sub(pattern, replacement.format(repo_name=repo_name, branch_name=branch_name), readme_str)
     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)
     readme_file.write(modified_readme)