@@ -39,7 +39,7 @@ check is required, the 'Node.check()' method can be overridden.
3939After executing a node the node's 'notify()' method is called to notify all connected nodes about possible changes to
4040the inputs they are waiting for. Custom post-execution behavior can be implemented here.
4141
42- ##How To create a custom Node Step by step
42+ ##How To Create a Custom Node Step by Step
4343In order to use Floppy, a Python interpreter compatible with PyQt5 is required. This probably means Python3.4 is needed.
4444To use the dynamic plotting nodes, matplotlib with all its dependencies is required. However, Floppy will still work as
4545long as no plotting nodes are used.
@@ -108,7 +108,6 @@ analyze data streams put out by other applications.
108108This method is called after \_ _ init\_ _ was executed. This is simply a convenient way to
109109avoid annoying calls of super(MyNode, self).\_ _ init\_ _ (* args, ** kwargs).
1101109 . Custom notification bahavior.
111- 8 . Initialize custom properties.
112111``` python
113112 class MyNode (Node ):
114113 ...
@@ -121,9 +120,8 @@ The custom implementation looks rather confusing and will not be discussed here.
121120The default implementation can be checked in the base class's implementation.
122121An example for custom behavior that leads to branches similar to if/else constructs can be
123122seen in the 'Switch' node which is also found in the floppy.node module.
124- Another non-standard behavior is can be observed in the case of the ForEach node.
125- 9 . Custom report behavior.
126- 8 . Initialize custom properties.
123+ Another non-standard behavior can be observed in the case of the ForEach node.
124+ 10 . Custom report behavior.
127125``` python
128126 class MyNode (Node ):
129127 ...
0 commit comments