From 7fd4b8bff6d8dbd88b83dc152a0207cd5cb9c350 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Thu, 19 Sep 2019 12:51:16 -0700 Subject: [PATCH] more prospector hints --- python/damask/util.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/damask/util.py b/python/damask/util.py index 85533e65b..63b9aed65 100644 --- a/python/damask/util.py +++ b/python/damask/util.py @@ -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