Skip to content

Commit

Permalink
Pre-commit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AradCarmi committed Nov 26, 2024
1 parent 1345def commit 0a0867b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12386,7 +12386,7 @@ def function_runner(func, profiler, signal_event,
results = {}
profiler = cProfile.Profile()
signal_event = threading.Event()
profiler_thread = threading.Thread(target=function_runner, args=(func, profiler, signal_event, results, args),
profiler_thread = threading.Thread(target=function_runner, args=(func, profiler, signal_event, results) + args,
kwargs=kwargs)
profiler_thread.start()

Expand Down

0 comments on commit 0a0867b

Please sign in to comment.