Want to import a string from xbmc setting and put it in the time.sleep function. Code:
debouncing_video = settings.getSetting( "Debounce_video")
debouncing_audio = settings.getSetting( "Debounce_audio")
time.sleep(denouncing_video)
If i replace the (debouncing_video) with a 3, it wait for tree second. If i print the string (denouncing_video) it say 3 but if i put time.sleep(debouncing_video) it is not working Thanks