1 2 3 4 5 6
import threading with threading.Lock(): # [useless-with-lock] print("Make your bed.") with threading.Lock(): # [useless-with-lock] print("Sleep in it")