more prospector hints

This commit is contained in:
Martin Diehl 2019-09-19 12:51:16 -07:00
parent d0579bb674
commit 7fd4b8bff6
1 changed files with 2 additions and 1 deletions

View File

@ -212,6 +212,7 @@ class return_message():
----------
message : str or list of str
message for output to screen
"""
self.message = message
@ -484,7 +485,7 @@ class ThreadPool:
"""Thread executing tasks from a given tasks queue."""
def __init__(self, tasks):
""" Worker for tasks."""
"""Worker for tasks."""
Thread.__init__(self)
self.tasks = tasks
self.daemon = True