We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 243d0f5 commit 647f99aCopy full SHA for 647f99a
1 file changed
scripts/deploy_res.py
@@ -23,9 +23,8 @@ def deploy_resources(
23
for file_path in file_paths:
24
print(f"::group::Checking {str(file_path)}")
25
file_content = read_file_from_path(file_path)
26
- page = (
27
- f"MediaWiki:Common.{'js' if res_type == '.js' else 'css'}/"
28
- + "/".join(file_path.parts[2:])
+ page = f"MediaWiki:Common.{'js' if res_type == '.js' else 'css'}/" + "/".join(
+ file_path.parts[2:]
29
)
30
print(f"...page = {page}")
31
deploy_result = session.deploy_file(
0 commit comments