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 775e38d commit f3e58c9Copy full SHA for f3e58c9
conda_forge_tick/make_migrators.py
@@ -152,16 +152,16 @@ def add_replacement_migrator(
152
graph=total_graph,
153
),
154
)
155
-
156
- migrators.append(
157
- Replacement(
158
- old_pkg=old_pkg,
159
- new_pkg=new_pkg,
160
- rationale=rationale,
161
- pr_limit=PR_LIMIT,
162
- graph=total_graph,
163
- ),
164
- )
+ else:
+ migrators.append(
+ Replacement(
+ old_pkg=old_pkg,
+ new_pkg=new_pkg,
+ rationale=rationale,
+ pr_limit=PR_LIMIT,
+ graph=total_graph,
+ ),
+ )
165
166
167
def add_arch_migrate(migrators: MutableSequence[Migrator], gx: nx.DiGraph) -> None:
0 commit comments