AI for Everyone - AI for Parents and Families
This AI script is meant to block certain apps after 8 PM:
if current_time > 20:
block_apps(['game', 'social'])
else:
allow_apps(['game', 'social'])
What is the error in this script?