From 08e07cd7d96b1755761cc5c0ee696d352d39436d Mon Sep 17 00:00:00 2001 From: Romain Dorgueil Date: Sat, 27 Oct 2018 11:58:54 +0200 Subject: [PATCH] Update 1-init.rst --- docs/tutorial/1-init.rst | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/tutorial/1-init.rst b/docs/tutorial/1-init.rst index 1668417..2dce510 100644 --- a/docs/tutorial/1-init.rst +++ b/docs/tutorial/1-init.rst @@ -203,12 +203,17 @@ Main Block get_graph(**options), services=get_services(**options) ) - + Here, the real thing happens. Without diving into too much details for now, using the :func:`bonobo.parse_args` context manager will allow our job to be configurable, later, and although we don't really need it right now, it does not harm neither. +.. note:: + + This is intended to run in a console terminal. If you're working in a jupyter notebook, you need to adapt the thing to + avoid trying to parse arguments, or you'll get into trouble. + Reading the output ::::::::::::::::::