smell: removes trailing space
This commit is contained in:
@ -23,7 +23,7 @@ DEFAULT_STRATEGY = 'threadpool'
|
|||||||
def create_strategy(name=None):
|
def create_strategy(name=None):
|
||||||
"""
|
"""
|
||||||
Create a strategy, or just returns it if it's already one.
|
Create a strategy, or just returns it if it's already one.
|
||||||
|
|
||||||
:param name:
|
:param name:
|
||||||
:return: Strategy
|
:return: Strategy
|
||||||
"""
|
"""
|
||||||
|
|||||||
@ -11,9 +11,9 @@ class Filter(Configurable):
|
|||||||
.. attribute:: filter
|
.. attribute:: filter
|
||||||
|
|
||||||
A callable used to filter lines.
|
A callable used to filter lines.
|
||||||
|
|
||||||
If the callable returns a true-ish value, the input will be passed unmodified to the next items.
|
If the callable returns a true-ish value, the input will be passed unmodified to the next items.
|
||||||
|
|
||||||
Otherwise, it'll be burnt.
|
Otherwise, it'll be burnt.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|||||||
@ -2,13 +2,13 @@ class Plugin:
|
|||||||
"""
|
"""
|
||||||
A plugin is an extension to the core behavior of bonobo. If you're writing transformations, you should not need
|
A plugin is an extension to the core behavior of bonobo. If you're writing transformations, you should not need
|
||||||
to use this interface.
|
to use this interface.
|
||||||
|
|
||||||
For examples, you can read bonobo.plugins.console.ConsoleOutputPlugin, or bonobo.plugins.jupyter.JupyterOutputPlugin
|
For examples, you can read bonobo.plugins.console.ConsoleOutputPlugin, or bonobo.plugins.jupyter.JupyterOutputPlugin
|
||||||
that respectively permits an interactive output on an ANSI console and a rich output in a jupyter notebook. Note
|
that respectively permits an interactive output on an ANSI console and a rich output in a jupyter notebook. Note
|
||||||
that you most probably won't instanciate them by yourself at runtime, as it's the default behaviour of bonobo to use
|
that you most probably won't instanciate them by yourself at runtime, as it's the default behaviour of bonobo to use
|
||||||
them if your in a compatible context (aka an interactive terminal for the console plugin, or a jupyter notebook for
|
them if your in a compatible context (aka an interactive terminal for the console plugin, or a jupyter notebook for
|
||||||
the notebook plugin.)
|
the notebook plugin.)
|
||||||
|
|
||||||
Warning: THE PLUGIN API IS PRE-ALPHA AND WILL EVOLVE BEFORE 1.0, DO NOT RELY ON IT BEING STABLE!
|
Warning: THE PLUGIN API IS PRE-ALPHA AND WILL EVOLVE BEFORE 1.0, DO NOT RELY ON IT BEING STABLE!
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|||||||
@ -24,7 +24,7 @@ class ValueHolder:
|
|||||||
For the sake of concistency, all operator methods have been implemented (see https://docs.python.org/3/reference/datamodel.html) or
|
For the sake of concistency, all operator methods have been implemented (see https://docs.python.org/3/reference/datamodel.html) or
|
||||||
at least all in a certain category, but it feels like a more correct method should exist, like with a getattr-something on the
|
at least all in a certain category, but it feels like a more correct method should exist, like with a getattr-something on the
|
||||||
value. Let's see later.
|
value. Let's see later.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, value):
|
def __init__(self, value):
|
||||||
|
|||||||
Reference in New Issue
Block a user