Skip to content

Commit 7636d3c

Browse files
authored
Update README.md
1 parent d116e43 commit 7636d3c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
Autofill is the process of automaticaly composing a function usage deduced from the prototype naming and a given context.
1212

1313
```python
14+
from madframe.autofill import autofill
1415

1516
context = {"value": "foo"}
1617
def some_function(value):
@@ -28,7 +29,7 @@ await autofill(some_function, args["bar"], context=context) # we pass an argumen
2829
### 🕙 Routine
2930

3031
```python
31-
from madframe import setup
32+
from madframe.bindings import setup
3233

3334
@setup
3435
def initialize():
@@ -50,7 +51,7 @@ Setup is used to define function to be ran at start-up. Those executions block t
5051
### 🚩 Wire
5152

5253
```python
53-
from madframe import wire
54+
from madframe.bindings import wire
5455

5556
something_is_done_when, do_something_when = wire()
5657

0 commit comments

Comments
 (0)