INNER CODE UNIT · Python

results

deltazefiro/Amarok-Hider · .github/scripts/summarize_translation_contrib.py:169

    results = await asyncio.gather(*tasks, return_exceptions=True)

    # Build result dict
    email_to_username = {}
    for result in results:
        if isinstance(result, tuple):
            email, username = result
            email_to_username[email] = username
        else:
            # Handle exceptions
            if verbose:
                print(f"  API: Error during lookup: {result}", file=sys.stderr)

    return email_to_username


def extract_co_authors(commit_msg: str) -> List[Tuple[str, str]]:
    """Extract co-authors from commit message."""

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…