def strip_commit_hash()

in analysis/render.py [0:0]


def strip_commit_hash(description: str) -> str:
    """Strip commit hash from a metric description"""
    marker = "Commit hash:"
    return description.split(marker)[0].strip()