Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 12, 2024
1 parent 9412204 commit 4c746c1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions conda_smithy/configure_feedstock.py
Original file line number Diff line number Diff line change
Expand Up @@ -2204,7 +2204,9 @@ def render_github_actions_services(jinja_env, forge_config, forge_dir):
"webservices.yml",
]
for filename in old_github_actions_files:
rel_target_fname = os.path.join(forge_dir, ".github", "workflows", filename)
rel_target_fname = os.path.join(
forge_dir, ".github", "workflows", filename
)
if _ignore_match(skip_files, rel_target_fname):
continue
remove_file(rel_target_fname)
Expand All @@ -2214,7 +2216,9 @@ def render_github_actions_services(jinja_env, forge_config, forge_dir):
current_github_actions_files = []
for template_file in current_github_actions_files:
template = jinja_env.get_template(template_file + ".tmpl")
rel_target_fname = os.path.join(forge_dir, ".github", "workflows", template_file)
rel_target_fname = os.path.join(
forge_dir, ".github", "workflows", template_file
)
if _ignore_match(skip_files, rel_target_fname):
continue
target_fname = os.path.join(forge_dir, rel_target_fname)
Expand Down

0 comments on commit 4c746c1

Please sign in to comment.