Skip to content

Commit 82312d9

Browse files
committed
fix typo while we are here
1 parent 8c940ca commit 82312d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

images/bot/src/bioconda_bot/comment.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ async def make_artifact_comment(session: ClientSession, pr: int, sha: str) -> No
3636
if ci_platform == "azure":
3737
comment += compose_azure_comment(artifacts)
3838
elif ci_platform == "circleci":
39-
comment += compose_circlci_comment(artifacts)
39+
comment += compose_circleci_comment(artifacts)
4040
elif ci_platform == "github-actions":
4141
comment += compose_gha_comment(artifacts)
4242
if len(comment) == 0:
@@ -91,7 +91,7 @@ def compose_azure_comment(artifacts: List[Tuple[str, str]]) -> str:
9191

9292
return comment
9393

94-
def compose_circlci_comment(artifacts: List[Tuple[str, str]]) -> str:
94+
def compose_circleci_comment(artifacts: List[Tuple[str, str]]) -> str:
9595
nPackages = len(artifacts)
9696

9797
if nPackages < 1:

0 commit comments

Comments
 (0)