Skip to content

Commit 1f5c704

Browse files
committed
updated docs
1 parent 7809dd0 commit 1f5c704

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class MyNode(Node):
4747

4848
def __init__(self):
4949
super(MyNode, self).__init__()
50-
self.add_input('foo')
50+
self.add_input('foo', color=(180, 80, 0))
5151
self.add_output('bar')
5252

5353

docs/overview.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ example code:
7878
super(FooNode, self).__init__()
7979
8080
# create an input port.
81-
self.add_input('in')
81+
self.add_input('in', color=(180, 80, 0))
8282
8383
# create an output port.
8484
self.add_output('out')

0 commit comments

Comments
 (0)