Glossary

Branch Coverage

tbd

Code Coverage

tbd

doc-string

tbd

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