浏览代码

fix linter

dinhlongnguyen 1 年之前
父节点
当前提交
1a6cc99a6f
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      tools/modify_readme.py

+ 2 - 2
tools/modify_readme.py

@@ -7,9 +7,9 @@ branch_name = sys.argv[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(f'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(f'README.md', 'w') as readme_file:
+with open('README.md', 'w') as readme_file:
     readme_file.write(modified_readme)