We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6051f44 commit f442fd9Copy full SHA for f442fd9
inline-css.py
@@ -10,7 +10,7 @@
10
for file_path_str in FILES_LIST:
11
file_path_list = REPO_PATH.glob(file_path_str)
12
for file_path in file_path_list:
13
- with open(file_path_list, 'r') as file:
+ with open(file_path, 'r') as file:
14
html = pm.transform(file.read())
15
- with open(file_path_list, 'w') as file:
+ with open(file_path, 'w') as file:
16
file.write(html)
0 commit comments