From 09af1440ef5af0dd928cf99990906d08accf2b27 Mon Sep 17 00:00:00 2001 From: thiswillbeyourgithub Date: Thu, 14 Apr 2022 12:40:42 +0200 Subject: [PATCH] docs: explain that Manager.run is not usually run Signed-off-by: thiswillbeyourgithub --- wasp/wasp.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wasp/wasp.py b/wasp/wasp.py index 2e41537..2dca1f1 100644 --- a/wasp/wasp.py +++ b/wasp/wasp.py @@ -498,7 +498,9 @@ class Manager(): This allows all watch management activities to handle in the normal execution context meaning any exceptions and other problems - can be observed interactively via the console. + can be observed interactively via the console. This is used by the + simulator or for debugging is not normally called. The watch instead + calls self.schedule() directly at startup from main.py. """ if self._scheduling: print('Watch already running in the background')