Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
6r17 authored May 27, 2023
1 parent d116e43 commit 7636d3c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
Autofill is the process of automaticaly composing a function usage deduced from the prototype naming and a given context.

```python
from madframe.autofill import autofill

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

```python
from madframe import setup
from madframe.bindings import setup

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

```python
from madframe import wire
from madframe.bindings import wire

something_is_done_when, do_something_when = wire()

Expand Down

0 comments on commit 7636d3c

Please sign in to comment.