Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix some mypy issues #3203

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Update conda_forge_tick/make_migrators.py
  • Loading branch information
beckermr authored and ytausch committed Nov 26, 2024
commit f3e58c984ef8a700145133857b5e92f72bf7b51c
20 changes: 10 additions & 10 deletions conda_forge_tick/make_migrators.py
Original file line number Diff line number Diff line change
@@ -152,16 +152,16 @@ def add_replacement_migrator(
graph=total_graph,
),
)

migrators.append(
Replacement(
old_pkg=old_pkg,
new_pkg=new_pkg,
rationale=rationale,
pr_limit=PR_LIMIT,
graph=total_graph,
),
)
else:
migrators.append(
Replacement(
old_pkg=old_pkg,
new_pkg=new_pkg,
rationale=rationale,
pr_limit=PR_LIMIT,
graph=total_graph,
),
)


def add_arch_migrate(migrators: MutableSequence[Migrator], gx: nx.DiGraph) -> None: