Spaces:
Runtime error
Runtime error
from playsound import playsound | |
class ResponseManager: | |
def activate_heated_seats(): | |
playsound("assets\command_responses\heated_activated.wav") | |
def deactivate_heated_seats(): | |
playsound("assets\command_responses\heated_deactivated.wav") | |
def activate_cooled_seats(): | |
playsound("assets\command_responses\cooled_activated.wav") | |
def deactivate_cooled_seats(): | |
playsound("assets\command_responses\cooled_deactivated.wav") | |
def activate_massage_seats(): | |
playsound("assets\command_responses\massage_activated.wav") | |
def deactivate_massage_seats(): | |
playsound("assets\command_responses\massage_deactivated.wav") | |