Glossary ######## .. glossary:: Branch Coverage tbd Code Coverage tbd doc-string tbd .. code-block:: Python def myFunction(a: int, b: int) -> str: """ Converts 2 integers to a tuple represented as a string. :param a: First tuple element. :param b: Second tuple element. :returns: The tuple ``"(a, b)"`` as a string. """ return f"({a}, {b})" Documentation Coverage tbd Statement Coverage tbd