def has_outfit(
         sim_info: SimInfo, outfit_category_and_index: Tuple[OutfitCategory,
                                                             int]) -> bool:
     """
         Determine if a sim has an existing outfit in the specified OutfitCategory and Index.
     :param sim_info: The sim to check.
     :param outfit_category_and_index: The OutfitCategory and index to locate.
     """
     return sim_info.has_outfit(outfit_category_and_index)
    def has_outfit(sim_info: SimInfo, outfit_category_and_index: Tuple[OutfitCategory, int]) -> bool:
        """has_outfit(sim_info, outfit_category_and_index)

        Determine if a Sim has an existing outfit in the specified OutfitCategory and Index.

        :param sim_info: The Sim to check.
        :type sim_info: SimInfo
        :param outfit_category_and_index: The OutfitCategory and index to locate.
        :type outfit_category_and_index: Tuple[OutfitCategory, int], optional
        :return: True, if the Sim has the specified OutfitCategory and Index. False, if not.
        :rtype: bool
        """
        return sim_info.has_outfit(outfit_category_and_index)