class PrivateClass:
    """A private class with public facing methods."""

    def public_method():
        """This is public."""
        return 5
