Skip to content

Commit 05ab3ac

Browse files
committed
Fixed formatting errors in README
1 parent 7c164c2 commit 05ab3ac

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ check is required, the 'Node.check()' method can be overridden.
3939
After executing a node the node's 'notify()' method is called to notify all connected nodes about possible changes to
4040
the 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
4343
In order to use Floppy, a Python interpreter compatible with PyQt5 is required. This probably means Python3.4 is needed.
4444
To use the dynamic plotting nodes, matplotlib with all its dependencies is required. However, Floppy will still work as
4545
long as no plotting nodes are used.
@@ -108,7 +108,6 @@ analyze data streams put out by other applications.
108108
This method is called after \__init\__ was executed. This is simply a convenient way to
109109
avoid annoying calls of super(MyNode, self).\__init\__(*args, **kwargs).
110110
9. 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.
121120
The default implementation can be checked in the base class's implementation.
122121
An example for custom behavior that leads to branches similar to if/else constructs can be
123122
seen 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

Comments
 (0)