summaryrefslogtreecommitdiff
path: root/doc/data/messages/u/useless-with-lock/bad.py
blob: cb7f0d80ad826e3d7756597a3af6999a824ebb63 (plain)
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")