Skip to content

Commit ada4150

Browse files
committed
dependency injection for GitPlatformBackend
1 parent 320f62d commit ada4150

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

conda_forge_tick/auto_tick.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -490,19 +490,19 @@ def run(
490490
return run(
491491
context=cloned_context,
492492
migrator=migrator,
493+
git_backend=git_backend,
493494
rerender=rerender,
494495
base_branch=base_branch,
495-
dry_run=dry_run,
496496
**kwargs,
497497
)
498498

499499

500500
def run(
501501
context: ClonedFeedstockContext,
502502
migrator: Migrator,
503+
git_backend: GitPlatformBackend,
503504
rerender: bool = True,
504505
base_branch: str = "main",
505-
dry_run: bool = False,
506506
**kwargs: typing.Any,
507507
) -> tuple[MigrationUidTypedDict, dict] | tuple[Literal[False], Literal[False]]:
508508
"""For a given feedstock and migration run the migration

0 commit comments

Comments
 (0)