Skip to content

Commit

Permalink
fix typo while we are here
Browse files Browse the repository at this point in the history
  • Loading branch information
aliciaaevans committed Jun 17, 2024
1 parent 8c940ca commit 82312d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions images/bot/src/bioconda_bot/comment.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ async def make_artifact_comment(session: ClientSession, pr: int, sha: str) -> No
if ci_platform == "azure":
comment += compose_azure_comment(artifacts)
elif ci_platform == "circleci":
comment += compose_circlci_comment(artifacts)
comment += compose_circleci_comment(artifacts)
elif ci_platform == "github-actions":
comment += compose_gha_comment(artifacts)
if len(comment) == 0:
Expand Down Expand Up @@ -91,7 +91,7 @@ def compose_azure_comment(artifacts: List[Tuple[str, str]]) -> str:

return comment

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

if nPackages < 1:
Expand Down

0 comments on commit 82312d9

Please sign in to comment.