def get_current_skill_level(sim_info: SimInfo, skill_id: int) -> float:
        """get_current_skill_level(sim_info, skill_id)

        Retrieve the Skill Level of a sim.

        :param sim_info: The Sim to check.
        :type sim_info: SimInfo
        :param skill_id: The identifier of the Skill to use.
        :type skill_id: int
        :return: The current skill level of the specified Skill or `-1.0` if a problem occurs.
        :rtype: float
        """
        return CommonSimStatisticUtils.get_statistic_level(sim_info, skill_id)
 def get_current_skill_level(sim_info: SimInfo, skill_id: int) -> float:
     """ Retrieve the Skill Level of a sim. """
     return CommonSimStatisticUtils.get_statistic_level(sim_info, skill_id)