summaryrefslogtreecommitdiff
path: root/doc/data/messages/b/bad-thread-instantiation/good.py
blob: 735fa4da131dec7c0080f1a5e2097167950dcd01 (plain)
1
2
3
4
5
6
7
8
9
import threading


def thread_target(n):
    print(n ** 2)


thread = threading.Thread(target=thread_target, args=(10,))
thread.start()