-
I have a bunch of tasks that I want to show progress of in a single display. They each run in a background thread and are queued. I have successfully created the progress bar and inside the various worker functions I can see the status of the tasks updating in the debugger, but I'm unable to hook in and display the progress in my main script. A rough example: lib.py
work.py
main.py
|
Beta Was this translation helpful? Give feedback.
Answered by
adamklaff
Aug 7, 2021
Replies: 1 comment
-
Nevermind! I was able to get this working. My issue was I had "start=False" when I was adding tasks. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
adamklaff
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nevermind! I was able to get this working. My issue was I had "start=False" when I was adding tasks.